From 73d69ad7b6ad98b56494aa4ca01835d7bd5ad43b Mon Sep 17 00:00:00 2001 From: Kareem <28524112+karyeet@users.noreply.github.com> Date: Sun, 30 Mar 2025 00:13:49 -0700 Subject: [PATCH] server must bind to all interfaces --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index bed4763f..44f57dfe 100644 --- a/src/main.rs +++ b/src/main.rs @@ -678,7 +678,7 @@ async fn main() -> Result<(), Box> { } // Start server with clear message - let addr = SocketAddr::from(([127, 0, 0, 1], 8086)); + let addr = SocketAddr::from(([0, 0, 0, 0], 8086)); tracing::info!("Starting OxiCloud server on http://{}", addr); // Start the server