root: allow listening on multiple IPs (#20930)

This commit is contained in:
Marc 'risson' Schmitt
2026-03-19 15:46:47 +00:00
committed by GitHub
parent 545b1e8f19
commit 4dfdf9afa3
24 changed files with 385 additions and 244 deletions

View File

@@ -237,43 +237,43 @@ Defaults to `seconds=60`.
##### `AUTHENTIK_LISTEN__HTTP`
Listening address:port for HTTP.
List of comma-separated `address:port` values for HTTP.
Applies to the Server, the Worker, and Proxy outposts.
Defaults to `0.0.0.0:9000`.
Defaults to `[::]:9000`.
##### `AUTHENTIK_LISTEN__HTTPS`
Listening address:port for HTTPS.
List of comma-separated `address:port` values for HTTPS.
Applies to the Server and Proxy outposts.
Defaults to `0.0.0.0:9443`.
Defaults to `[::]:9443`.
##### `AUTHENTIK_LISTEN__LDAP`
Listening address:port for LDAP.
List of comma-separated `address:port` values for LDAP.
Applies to LDAP outposts.
Defaults to `0.0.0.0:3389`.
Defaults to `[::]:3389`.
##### `AUTHENTIK_LISTEN__LDAPS`
Listening address:port for LDAPS.
List of comma-separated `address:port` values for LDAPS.
Applies to LDAP outposts.
Defaults to `0.0.0.0:6636`.
Defaults to `[::]:6636`.
##### `AUTHENTIK_LISTEN__METRICS`
Listening address:port for Prometheus metrics.
List of comma-separated `address:port` values for Prometheus metrics.
Applies to all.
Defaults to `0.0.0.0:9300`.
Defaults to `[::]:9300`.
##### `AUTHENTIK_LISTEN__DEBUG`