Skip to content

Commit

Permalink
fix: change bind address
Browse files Browse the repository at this point in the history
  • Loading branch information
MrExplode committed Oct 22, 2023
1 parent 4347dbd commit fa58cf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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<()> {
.service(jira::handle)
.service(docker::handle)
})
.bind(("127.0.0.1", 3000))?
.bind(("0.0.0.0", 3000))?
.run()
.await
}

0 comments on commit fa58cf1

Please sign in to comment.