server must bind to all interfaces

This commit is contained in:
Kareem
2025-03-30 00:13:49 -07:00
parent ef19b935ec
commit 73d69ad7b6
+1 -1
View File
@@ -678,7 +678,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
}
// 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