From d0a69557d4700f54a4ac6ca98f21263052fc4b27 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Mon, 5 Sep 2022 21:37:11 +0300 Subject: [PATCH] website/docs: explain LISTEN envs better (#3532) From a recent adventure discovered that this env's define `address:port` not just `port`. If you define only `port` it will error out with `"error":"listen tcp: address 9000: missing port in address"` Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> --- website/docs/installation/configuration.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/website/docs/installation/configuration.md b/website/docs/installation/configuration.md index b7a176cd6..7821a3a8a 100644 --- a/website/docs/installation/configuration.md +++ b/website/docs/installation/configuration.md @@ -39,12 +39,12 @@ All of these variables can be set to values, but you can also use a URI-like for ## Listen Setting -- `AUTHENTIK_LISTEN__HTTP`: Listening port for HTTP (Server and Proxy outpost) -- `AUTHENTIK_LISTEN__HTTPS`: Listening port for HTTPS (Server and Proxy outpost) -- `AUTHENTIK_LISTEN__LDAP`: Listening port for LDAP (LDAP outpost) -- `AUTHENTIK_LISTEN__LDAPS`: Listening port for LDAPS (LDAP outpost) -- `AUTHENTIK_LISTEN__METRICS`: Listening port for Prometheus metrics (All) -- `AUTHENTIK_LISTEN__DEBUG`: Listening port for Go Debugging metrics (All) +- `AUTHENTIK_LISTEN__HTTP`: Listening address:port (e.g. `0.0.0.0:9000`) for HTTP (Server and Proxy outpost) +- `AUTHENTIK_LISTEN__HTTPS`: Listening address:port (e.g. `0.0.0.0:9443`) for HTTPS (Server and Proxy outpost) +- `AUTHENTIK_LISTEN__LDAP`: Listening address:port (e.g. `0.0.0.0:3389`) for LDAP (LDAP outpost) +- `AUTHENTIK_LISTEN__LDAPS`: Listening address:port (e.g. `0.0.0.0:6636`) for LDAPS (LDAP outpost) +- `AUTHENTIK_LISTEN__METRICS`: Listening address:port (e.g. `0.0.0.0:9300`) for Prometheus metrics (All) +- `AUTHENTIK_LISTEN__DEBUG`: Listening address:port (e.g. `0.0.0.0:9900`) for Go Debugging metrics (All) ## authentik Settings