diff --git a/lldap_config.docker_template.toml b/lldap_config.docker_template.toml index 1c290af..d17e506 100644 --- a/lldap_config.docker_template.toml +++ b/lldap_config.docker_template.toml @@ -15,8 +15,8 @@ #ldap_port = 3890 ## The host address that the HTTP server will be bound to. -## To enable IPv6 support, simply switch "api_host" to "::1": -#api_host = "0.0.0.0" +## To enable IPv6 support, simply switch "http_host" to "::1": +#http_host = "0.0.0.0" ## The port on which to have the HTTP server, for user login and ## administration. diff --git a/server/src/infra/cli.rs b/server/src/infra/cli.rs index bc2f9c3..a31a968 100644 --- a/server/src/infra/cli.rs +++ b/server/src/infra/cli.rs @@ -63,8 +63,8 @@ pub struct RunOpts { pub ldap_port: Option, /// Change HTTP API host. Default: "0.0.0.0" - #[clap(long, env = "LLDAP_API_HOST")] - pub api_host: Option, + #[clap(long, env = "LLDAP_HTTP_HOST")] + pub http_host: Option, /// Change HTTP API port. Default: 17170 #[clap(long, env = "LLDAP_HTTP_PORT")] diff --git a/server/src/infra/configuration.rs b/server/src/infra/configuration.rs index 4ff8987..bfdc3ee 100644 --- a/server/src/infra/configuration.rs +++ b/server/src/infra/configuration.rs @@ -69,7 +69,7 @@ pub struct Configuration { #[builder(default = "3890")] pub ldap_port: u16, #[builder(default = r#"String::from("0.0.0.0")"#)] - pub api_host: String, + pub http_host: String, #[builder(default = "17170")] pub http_port: u16, #[builder(default = r#"SecUtf8::from("secretjwtsecret")"#)] diff --git a/server/src/infra/tcp_server.rs b/server/src/infra/tcp_server.rs index 481315d..ee11596 100644 --- a/server/src/infra/tcp_server.rs +++ b/server/src/infra/tcp_server.rs @@ -131,7 +131,7 @@ where server_builder .bind( "http", - (config.api_host.clone(), config.http_port), + (config.http_host.clone(), config.http_port), move || { let backend_handler = backend_handler.clone(); let jwt_secret = jwt_secret.clone();