From afce62f2095e7201e62e515fbe516b60f41cbdfe 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 b6f731c..c077268 100644 --- a/src/main.rs +++ b/src/main.rs @@ -387,7 +387,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.43.0