From 4cbe13cd80ee076f4b80d5060e0b15ad31a60de5 Mon Sep 17 00:00:00 2001 From: WanderingPenwing Date: Mon, 2 Sep 2024 22:08:33 +0200 Subject: [PATCH] changed port --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 58e8f81..aff3fea 100644 --- a/src/main.rs +++ b/src/main.rs @@ -154,7 +154,7 @@ async fn main() -> std::io::Result<()> { .service(actix_files::Files::new("/assets", "./assets").show_files_listing()) .default_service(web::route().to(summary)) }) - .bind("0.0.0.0:8080")? + .bind("0.0.0.0:2180")? .run() .await; println!("yuya stopped");