diff --git a/src/main.rs b/src/main.rs index 26e2abd..08f45e8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -46,7 +46,7 @@ async fn create_user(user: web::Json) -> impl Responder { #[actix_web::main] async fn main() -> std::io::Result<()> { - println!("Starting server at http://localhost:8080"); + println!("Starting server at http://localhost:80"); HttpServer::new(|| { App::new() @@ -55,7 +55,7 @@ async fn main() -> std::io::Result<()> { .service(greet) .service(create_user) }) - .bind("0.0.0.0:8080")? + .bind("0.0.0.0:80")? .run() .await } \ No newline at end of file