Ana Initial
This commit is contained in:
0
conf/traefik-ana/config/acme.json
Normal file
0
conf/traefik-ana/config/acme.json
Normal file
95
conf/traefik-ana/config/traefik.yml
Executable file
95
conf/traefik-ana/config/traefik.yml
Executable file
@@ -0,0 +1,95 @@
|
||||
global:
|
||||
checkNewVersion: true
|
||||
sendAnonymousUsage: false # true by default
|
||||
|
||||
# (Optional) Log information
|
||||
# ---
|
||||
# log:
|
||||
# level: ERROR # DEBUG, INFO, WARNING, ERROR, CRITICAL
|
||||
# format: common # common, json, logfmt
|
||||
# filePath: /var/log/traefik/traefik.log
|
||||
|
||||
# (Optional) Accesslog
|
||||
# ---
|
||||
# accesslog:
|
||||
# format: common # common, json, logfmt
|
||||
# filePath: /var/log/traefik/access.log
|
||||
|
||||
# (Optional) Enable API and Dashboard
|
||||
# ---
|
||||
api:
|
||||
dashboard: true # true by default
|
||||
insecure: true # Don't do this in production!
|
||||
|
||||
# Entry Points configuration
|
||||
# ---
|
||||
entryPoints:
|
||||
web:
|
||||
address: :80
|
||||
# (Optional) Redirect to HTTPS
|
||||
# ---
|
||||
# http:
|
||||
# redirections:
|
||||
# entryPoint:
|
||||
# to: websecure
|
||||
# scheme: https
|
||||
|
||||
websecure:
|
||||
address: :443
|
||||
|
||||
# Configure your CertificateResolver here...
|
||||
# ---
|
||||
|
||||
#certificatesResolvers:
|
||||
# pfi:
|
||||
# acme:
|
||||
# email: vh@phasefinal.com
|
||||
# storage: /etc/traefik/certs/acme.json
|
||||
# caServer: "https://acme-v02.api.letsencrypt.org/directory"
|
||||
# dnsChallenge:
|
||||
# provider: route53
|
||||
|
||||
certificatesResolvers:
|
||||
anaprod:
|
||||
acme:
|
||||
storage: acme.json
|
||||
email: vh@phasefinal.com
|
||||
httpChallenge:
|
||||
entryPoint: web
|
||||
|
||||
# certificatesResolvers:
|
||||
# staging:
|
||||
# acme:
|
||||
# email: your-email@example.com
|
||||
# storage: /etc/traefik/certs/acme.json
|
||||
# caServer: "https://acme-staging-v02.api.letsencrypt.org/directory"
|
||||
# httpChallenge:
|
||||
# entryPoint: web
|
||||
#
|
||||
# production:
|
||||
# acme:
|
||||
# email: your-email@example.com
|
||||
# storage: /etc/traefik/certs/acme.json
|
||||
# caServer: "https://acme-v02.api.letsencrypt.org/directory"
|
||||
# httpChallenge:
|
||||
# entryPoint: web
|
||||
|
||||
# (Optional) Overwrite Default Certificates
|
||||
# tls:
|
||||
# stores:
|
||||
# default:
|
||||
# defaultCertificate:
|
||||
# certFile: /etc/traefik/certs/cert.pem
|
||||
# keyFile: /etc/traefik/certs/cert-key.pem
|
||||
# (Optional) Disable TLS version 1.0 and 1.1
|
||||
# options:
|
||||
# default:
|
||||
# minVersion: VersionTLS12
|
||||
|
||||
providers:
|
||||
docker:
|
||||
exposedByDefault: false # Default is true
|
||||
file:
|
||||
# watch for dynamic configuration changes
|
||||
directory: /etc/traefik
|
||||
watch: true
|
||||
Reference in New Issue
Block a user