diff --git a/server/src/main.rs b/server/src/main.rs index 690f854..3423e73 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -92,7 +92,7 @@ async fn main() -> Result<()> { .with_state(app_state); // send it - let address = "0.0.0.0:3030"; + let address = "127.0.0.1:3030"; let listener = tokio::net::TcpListener::bind(address) .await .with_context(|| format!("{} is not a valid bind address.", address))?;