From 018e3048ef8d7b66285ec5750d84c773f0d3420b Mon Sep 17 00:00:00 2001 From: Mitchell Marino Date: Wed, 12 Apr 2023 23:53:27 -0500 Subject: [PATCH] change address --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index cf5f2f0..bac875f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -51,7 +51,7 @@ async fn main() { // run our app with hyper // `axum::Server` is a re-export of `hyper::Server` - let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); + let addr = SocketAddr::from(([0, 0, 0, 0], 3000)); tracing::info!("listening on {}", addr); axum::Server::bind(&addr) .serve(app.into_make_service())