mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-08 09:24:04 +01:00
.. | ||
config | ||
docker-compose.yml | ||
README.md |
Installing
Customization
Data Persistence
... Storing Data in the /etc/traefik
directory on the host, passing through...
volumes:
- /etc/traefik:/etc/traefik
Self-Signed Certificates
According to traefik's documentation it will automatically generate self-signed Certificates if no Default Certificate is provided. If you'd like to overwrite the self-signed Certificate with your own, uncomment the section for
# (Optional) Overwrite Default Certificates
tls:
stores:
default:
defaultCertificate:
certFile: /etc/traefik/certs/cert.pem
keyFile: /etc/traefik/certs/cert-key.pem
Replace the /etc/traefik/certs/cert.pem
with your certificate file, and the /etc/traefik/certs/cert-key.pem
with your certificate key.
Best-Practices
providers:
docker:
exposedByDefault: false # Default is true
file:
# watch for dynamic configuration changes
directory: /etc/traefik
watch: true