From ca02ceff4e2febe62fc78a7781f15136d4b4a714 Mon Sep 17 00:00:00 2001 From: Will Andrews Date: Sun, 4 Jan 2026 14:00:42 +0000 Subject: [PATCH] use 0.0.0.0 as default host Signed-off-by: Will Andrews --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 502d6c4..674ec1e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -390,7 +390,7 @@ async fn main() -> Result<(), Box> { .layer(cors) .with_state(state); - let host = env::var("GATEKEEPER_HOST").unwrap_or_else(|_| "127.0.0.1".to_string()); + let host = env::var("GATEKEEPER_HOST").unwrap_or_else(|_| "0.0.0.0".to_string()); let port: u16 = env::var("GATEKEEPER_PORT") .ok() .and_then(|s| s.parse().ok()) -- 2.51.2