Skip to content

Commit

Permalink
change host
Browse files Browse the repository at this point in the history
Signed-off-by: Song Gao <[email protected]>
  • Loading branch information
Yisaer committed Aug 29, 2024
1 parent 3dafe1e commit a17ca1c
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 @@ -198,7 +198,7 @@ pub async fn main() {
.unwrap();
start_collecting_metric();
let app = app();
let http_addr = "127.0.0.1:3030";
let http_addr = "0.0.0.0:3030";
let listener = tokio::net::TcpListener::bind(http_addr).await.unwrap();
info!("HTTP listening to {}", http_addr);
axum::serve(listener, app).await.unwrap();
Expand Down

0 comments on commit a17ca1c

Please sign in to comment.