Skip to content

Commit

Permalink
Fix addr binding
Browse files Browse the repository at this point in the history
  • Loading branch information
max-lt committed Mar 24, 2024
1 parent 094f4f7 commit 67c8cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ async fn main() -> std::io::Result<()> {
.route("/health", web::get().to(health_check))
.default_service(web::to(handle_request))
})
.bind(("127.0.0.1", 8080))?
.bind(("0.0.0.0", 8080))?
.workers(4)
.run()
.await
Expand Down

0 comments on commit 67c8cfc

Please sign in to comment.