Skip to content

Commit

Permalink
bind to local address
Browse files Browse the repository at this point in the history
  • Loading branch information
rushsteve1 committed Jan 14, 2024
1 parent fcb946b commit 05717cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ fn setup_config() -> anyhow::Result<Config> {
};
info!("Application ID set");

let domain = env::var("WEB_DOMAIN").unwrap_or_else(|_| "0.0.0.0".to_string());
let domain = env::var("WEB_DOMAIN").unwrap_or_else(|_| "127.0.0.1".to_string());
info!("Using domain: {}", domain);

let otel_endpoint = env::var("OTEL_ENDPOINT").unwrap_or_default();
Expand Down

0 comments on commit 05717cc

Please sign in to comment.