working on secure readme
This commit is contained in:
31
traefik.yml
Normal file
31
traefik.yml
Normal file
@@ -0,0 +1,31 @@
|
||||
# traefik.yml
|
||||
# yml file to define traefik global settings. Individual containers get lables to define their own settings
|
||||
|
||||
api:
|
||||
# dashboard: true
|
||||
insecure: true
|
||||
|
||||
providers:
|
||||
docker:
|
||||
# Do not expose every container automatically
|
||||
exposedByDefault: false
|
||||
|
||||
entryPoints:
|
||||
web:
|
||||
address: ":80"
|
||||
# Global HTTP -> HTTPS Redirection
|
||||
http:
|
||||
redirections:
|
||||
entryPoint:
|
||||
to: websecure
|
||||
scheme: https
|
||||
websecure:
|
||||
address: ":443"
|
||||
|
||||
certificatesResolvers:
|
||||
myresolver:
|
||||
acme:
|
||||
email: web-admin@riverrooks.art
|
||||
storage: /letsencrypt/acme.json
|
||||
# Use the TLS challenge for domain verification
|
||||
tlsChallenge: {}
|
||||
Reference in New Issue
Block a user