This repository has been archived on 2025-11-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
John 00bb5748a2 Fix certificatesResolvers typo in Traefik static configuration
Changed 'certresolver' to 'certificatesResolvers' (plural) which is the correct
Traefik v3 configuration key for defining ACME certificate resolvers.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-10 11:41:14 +00:00

60 lines
1005 B
YAML

# /etc/traefik/traefik.yml or /etc/traefik/static.yml
# Global configuration
global:
checkNewVersion: false
sendAnonymousUsage: false
# API and Dashboard
api:
dashboard: true
insecure: true
# Health check endpoint
ping: {}
# Entry points
entryPoints:
web:
address: ":80"
http:
redirections:
entrypoint:
to: websecure
scheme: https
websecure:
address: ":443"
# Providers
providers:
# Docker Swarm provider
swarm:
endpoint: "unix:///var/run/docker.sock"
exposedByDefault: false
network: homelab
watch: true
# File provider for dynamic configuration
file:
directory: /etc/traefik/dynamic
watch: true
# Certificate resolvers
certificatesResolvers:
cloudflare:
acme:
email: john.allisonwin@outlook.com
storage: /certificates/acme.json
dnsChallenge:
provider: cloudflare
resolvers:
- 1.1.1.1:53
- 8.8.8.8:53
# Logging
log:
level: INFO
accessLog: {}