mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
This is to allow broader support for proxies. In particular, this allows support with Traefik. This patch also includes some examples of configuration with Traefik.
31 lines
679 B
TOML
31 lines
679 B
TOML
defaultEntryPoints = ["http", "https"]
|
|
# logLevel = "DEBUG"
|
|
|
|
[entryPoints]
|
|
[entryPoints.http]
|
|
address = ":80"
|
|
[entryPoints.http.redirect]
|
|
entryPoint = "https"
|
|
[entryPoints.https]
|
|
address = ":443"
|
|
[entryPoints.https.tls]
|
|
[entryPoints.api]
|
|
address = ":8080"
|
|
|
|
[api]
|
|
# This is exposed via a subdomain and a proxy
|
|
entryPoint = "api"
|
|
dashboard = true
|
|
|
|
[docker]
|
|
# Docker server endpoint. Can be a tcp or a unix socket endpoint.
|
|
endpoint = "unix:///var/run/docker.sock"
|
|
# network = "traefik_default"
|
|
|
|
# Default domain used.
|
|
# Can be overridden by setting the "traefik.domain" label on a container.
|
|
domain = "localhost"
|
|
|
|
# Enable watch docker changes
|
|
watch = true
|