Skip to content

Commit

Permalink
updated bind
Browse files Browse the repository at this point in the history
  • Loading branch information
benborla committed Aug 29, 2024
1 parent 2bbeec4 commit 38e0565
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 @@ -6,7 +6,7 @@ async fn main() {

match run_app().await {
Ok(app) => {
let listener = tokio::net::TcpListener::bind("0.0.0.0:3380").await.unwrap();
let listener = tokio::net::TcpListener::bind("[::]:3380").await.unwrap();
axum::serve(listener, app.into_make_service())
.await
.unwrap();
Expand Down

0 comments on commit 38e0565

Please sign in to comment.