Skip to content

Commit

Permalink
Update main.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
qui-pham authored Aug 8, 2024
1 parent 6a33dd8 commit 0b00fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async fn main() -> std::io::Result<()> {
App::new().wrap(cors).service(cast_command_handler)
})
.keep_alive(Duration::from_secs(600))
.bind("127.0.0.1:8080")?
.bind("0.0.0.0:8080")?
.workers(5)
.run()
.await
Expand Down

0 comments on commit 0b00fcf

Please sign in to comment.