From 2d14dd2b937b03e8586cf6c2913190278130ac91 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sat, 31 Jan 2026 19:12:29 -0500 Subject: [PATCH] fixed port --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 9b66d7b..fc7d68c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -138,7 +138,7 @@ async fn main() { .route("/posts/{slug}", get(|slug| get_post(slug, posts))) .nest_service("/static", ServeDir::new("static")); - let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap(); - println!("Running on http://127.0.0.1:3000"); + let listener = tokio::net::TcpListener::bind("0.0.0.0:42069").await.unwrap(); + println!("Running on http://127.0.0.1:42069"); axum::serve(listener, site).await.unwrap(); }