27 lines
818 B
YAML
27 lines
818 B
YAML
# STATIC CONFIGURATION
|
|
|
|
entryPoints:
|
|
https:
|
|
address: ":443" # Create an entrypoint called "https" that uses port 443
|
|
# If you want to enable HTTP/3 support, uncomment the line below
|
|
# http3: {}
|
|
web:
|
|
address: ":80"
|
|
|
|
certificatesResolvers:
|
|
# Define "letsencrypt" certificate resolver
|
|
letsencrypt:
|
|
acme:
|
|
storage: /letsencrypt/acme.json # Defines the path where certificates should be stored
|
|
email: "infra@clps.ch" #Where LE sends notification about certificates expiring
|
|
tlschallenge: true
|
|
|
|
providers:
|
|
file:
|
|
directory: "/etc/traefik/dynamic_conf.d" # Adjust the path according your needs.
|
|
watch: true
|
|
|
|
# Enable HTTP/3 feature by uncommenting the lines below. Don't forget to route 443 UDP to Traefik (Firewall\NAT\Traefik Container)
|
|
# experimental:
|
|
# http3: true
|