From ee692fec27c4d648054a445b249e66c83f525b9a Mon Sep 17 00:00:00 2001 From: linlkin Date: Fri, 6 Dec 2024 01:50:00 +0000 Subject: [PATCH] Actualiser back/src/main.rs --- back/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/src/main.rs b/back/src/main.rs index ad8f7f5..7242d32 100644 --- a/back/src/main.rs +++ b/back/src/main.rs @@ -74,7 +74,7 @@ async fn main() -> Result<(), std::io::Error> { .service(api) .service(Files::new("/", "public").index_file("index.html")) }) - .bind(("0.0.0.0", 8080))? + .bind(("0.0.0.0", 2486))? .run() .await }