diff --git a/src/main.rs b/src/main.rs index 3fac7f6..c1cb456 100644 --- a/src/main.rs +++ b/src/main.rs @@ -131,7 +131,7 @@ async fn main() -> std::io::Result<()> { .app_data(web::Data::new(state.clone())) .route("/", web::get().to(connect_handler)) }) - .bind("127.0.0.1")? + .bind("127.0.0.1:80")? .run() .await }