From f3ddd84d875d6adb9d12bc075eafef456aaccaee Mon Sep 17 00:00:00 2001 From: Gerard Zinn Date: Mon, 18 Nov 2024 17:19:26 +0100 Subject: [PATCH] Update main.rs --- server/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main.rs b/server/src/main.rs index 8b523b6..383f133 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -41,7 +41,7 @@ async fn main() -> std::io::Result<()> { .default_service(web::route().to(cached_files)) .state(cache.clone()) }) - .bind("0.0.0.0:5174")? + .bind("127.0.0.1:5174")? .run() .await }