Skip to content

Commit

Permalink
bugfix: make pdf2md bind to host port
Browse files Browse the repository at this point in the history
  • Loading branch information
cdxker authored and skeptrunedev committed Nov 19, 2024
1 parent 68e1315 commit 5276259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdf2md/server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ pub async fn main() -> std::io::Result<()> {
}))
.into_app()
})
.bind(("127.0.0.1", 8081))?
.bind(("0.0.0.0", 8081))?
.run()
.await
}

0 comments on commit 5276259

Please sign in to comment.