Skip to content

Commit

Permalink
fix: expose influxdb on all interfaces by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mgattozzi committed Mar 28, 2024
1 parent 9b91656 commit eb49cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion influxdb3/src/commands/serve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ use trogging::cli::LoggingConfig;
pub const DEFAULT_DATA_DIRECTORY_NAME: &str = ".influxdb3";

/// The default bind address for the HTTP API.
pub const DEFAULT_HTTP_BIND_ADDR: &str = "127.0.0.1:8181";
pub const DEFAULT_HTTP_BIND_ADDR: &str = "0.0.0.0:8181";

#[derive(Debug, Error)]
pub enum Error {
Expand Down

0 comments on commit eb49cb4

Please sign in to comment.