125 lines
No EOL
4.2 KiB
YAML
125 lines
No EOL
4.2 KiB
YAML
# Traefik 3.x (YAML)
|
|
# Updated 2024-June-04
|
|
|
|
################################################################
|
|
# Global configuration - https://doc.traefik.io/traefik/reference/static-configuration/file/
|
|
################################################################
|
|
global:
|
|
checkNewVersion: false
|
|
sendAnonymousUsage: false
|
|
|
|
################################################################
|
|
# Entrypoints - https://doc.traefik.io/traefik/routing/entrypoints/
|
|
################################################################
|
|
entryPoints:
|
|
web:
|
|
address: ":80"
|
|
# Global HTTP to HTTPS redirection
|
|
http:
|
|
redirections:
|
|
entrypoint:
|
|
to: websecure
|
|
scheme: https
|
|
|
|
websecure:
|
|
address: ":443"
|
|
http:
|
|
tls:
|
|
options: tls-opts@file
|
|
certResolver: le
|
|
domains:
|
|
- main: "domain.tld"
|
|
sans:
|
|
- "*.domain.tld"
|
|
forwardedHeaders:
|
|
trustedIPs:
|
|
# Cloudflare (https://www.cloudflare.com/ips-v4)
|
|
- "173.245.48.0/20"
|
|
- "103.21.244.0/22"
|
|
- "103.22.200.0/22"
|
|
- "103.31.4.0/22"
|
|
- "141.101.64.0/18"
|
|
- "108.162.192.0/18"
|
|
- "190.93.240.0/20"
|
|
- "188.114.96.0/20"
|
|
- "197.234.240.0/22"
|
|
- "198.41.128.0/17"
|
|
- "162.158.0.0/15"
|
|
- "104.16.0.0/13"
|
|
- "104.24.0.0/14"
|
|
- "172.64.0.0/13"
|
|
- "131.0.72.0/22"
|
|
# Local IPs
|
|
- "127.0.0.1/32"
|
|
- "10.0.0.0/8"
|
|
- "192.168.0.0/16"
|
|
- "172.16.0.0/12"
|
|
|
|
################################################################
|
|
# Logs - https://doc.traefik.io/traefik/observability/logs/
|
|
################################################################
|
|
log:
|
|
level: INFO # Options: DEBUG, PANIC, FATAL, ERROR (Default), WARN, and INFO
|
|
filePath: /logs/traefik-container.log # Default is to STDOUT
|
|
# format: json # Uses text format (common) by default
|
|
noColor: false # Recommended to be true when using common
|
|
maxSize: 100 # In megabytes
|
|
compress: true # gzip compression when rotating
|
|
|
|
################################################################
|
|
# Access logs - https://doc.traefik.io/traefik/observability/access-logs/
|
|
################################################################
|
|
accessLog:
|
|
addInternals: true # things like ping@internal
|
|
filePath: /logs/traefik-access.log # In the Common Log Format (CLF) by default
|
|
bufferingSize: 100 # Number of log lines
|
|
fields:
|
|
names:
|
|
StartUTC: drop # Write logs in Container Local Time instead of UTC
|
|
filters:
|
|
statusCodes:
|
|
- "204-299"
|
|
- "400-499"
|
|
- "500-599"
|
|
|
|
################################################################
|
|
# API and Dashboard
|
|
################################################################
|
|
api:
|
|
dashboard: true
|
|
# Rely on api@internal and Traefik with Middleware to control access
|
|
# insecure: true
|
|
|
|
################################################################
|
|
# Providers - https://doc.traefik.io/traefik/providers/docker/
|
|
################################################################
|
|
providers:
|
|
docker:
|
|
#endpoint: "unix:///var/run/docker.sock" # Comment if using socket-proxy
|
|
endpoint: "tcp://socket-proxy:2375" # Uncomment if using socket proxy
|
|
exposedByDefault: false
|
|
network: traefik # network to use for connections to all containers
|
|
# defaultRule: TODO
|
|
|
|
# Enable auto loading of newly created rules by watching a directory
|
|
file:
|
|
# Apps, LoadBalancers, TLS Options, Middlewares, Middleware Chains
|
|
directory: /rules
|
|
watch: true
|
|
|
|
################################################################
|
|
# Let's Encrypt (ACME)
|
|
################################################################
|
|
certificatesResolvers:
|
|
le:
|
|
acme:
|
|
email: "CHANGEME@gmail.com"
|
|
storage: "/data/acme.json"
|
|
#caServer: "https://acme-staging-v02.api.letsencrypt.org/directory" # Comment out when going prod
|
|
dnsChallenge:
|
|
provider: cloudflare
|
|
#delayBeforeCheck: 30 # Default is 2m0s. This changes the delay (in seconds)
|
|
# Custom DNS server resolution
|
|
resolvers:
|
|
- "1.1.1.1:53"
|
|
- "8.8.8.8:53" |