diff --git a/src/main.rs b/src/main.rs index 623f5db..714b377 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,7 +24,7 @@ async fn main() -> std::io::Result<()> { .route("/cyberpreneur", web::get().to(route::cyber)) .route("/offgrid", web::get().to(route::off)) }) - .bind("127.0.0.1:5000")? + .bind("0.0.0.0:5000")? .run() .await }