traefik-proxy-config/example.config.py
2023-11-12 20:26:38 +01:00

8 lines
478 B
Python

TRAEFIK_HOST="traefik.example.com"
TRAEFIK_USER = "administrator"
TRAEFIK_PASS = 'passwd_123'
TRAEFIK_PROXY_TARGET="http://10.0.0.1:80" # IP/Domain with http(s):// and port of the other Traefik instance!
TRAEFIK_EXCLUDE=("api@internal","dashboard@internal","noop@internal") # List of which routers to ignore
TRAEFIK_PROXY_SERVICE_NAME="private-server-proxy" # Name of the created service (make sure it doesn't overlap with existing services!)
TRAEFIK_CONF_OUT="proxyConfig.yml"