Microservice to bring 2FA to self hosted PDSes

use 0.0.0.0 as default host

Signed-off-by: Will Andrews <will7989@hotmail.com>

authored by willdot.net and committed by tangled.org ca02ceff a49ee039

Changed files
+1 -1
src
+1 -1
src/main.rs
··· 390 390 .layer(cors) 391 391 .with_state(state); 392 392 393 - let host = env::var("GATEKEEPER_HOST").unwrap_or_else(|_| "127.0.0.1".to_string()); 393 + let host = env::var("GATEKEEPER_HOST").unwrap_or_else(|_| "0.0.0.0".to_string()); 394 394 let port: u16 = env::var("GATEKEEPER_PORT") 395 395 .ok() 396 396 .and_then(|s| s.parse().ok())