reorganize folders
This commit is contained in:
73
docker-compose/traefik/config/traefik.yml
Normal file
73
docker-compose/traefik/config/traefik.yml
Normal file
@@ -0,0 +1,73 @@
|
||||
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:
|
||||
# enabled: true
|
||||
# insecure: true # Don't do this in production!
|
||||
|
||||
# Entry Points configuration
|
||||
# ---
|
||||
entryPoints:
|
||||
web:
|
||||
address: :80
|
||||
# (Optional) Redirect to HTTPS
|
||||
# ---
|
||||
# http:
|
||||
# redirectons:
|
||||
# entryPoint:
|
||||
# to: websecure
|
||||
# scheme: https
|
||||
|
||||
websecure:
|
||||
address: :443
|
||||
|
||||
# Certificates configuration
|
||||
# ---
|
||||
# TODO: Custmoize your Cert Resolvers and Domain settings
|
||||
#
|
||||
certificatesResolvers:
|
||||
# LET'S ENCRYPT:
|
||||
# ---
|
||||
#
|
||||
staging:
|
||||
acme:
|
||||
email: your-email@example.com # TODO: Change this to your email
|
||||
storage: /ssl-certs/acme.json
|
||||
caServer: "https://acme-staging-v02.api.letsencrypt.org/directory"
|
||||
httpChallenge:
|
||||
entryPoint: web
|
||||
production:
|
||||
acme:
|
||||
email: your-email@example.com # TODO: Change this to your email
|
||||
storage: /ssl-certs/acme.json
|
||||
caServer: "https://acme-v02.api.letsencrypt.org/directory"
|
||||
httpChallenge:
|
||||
entryPoint: web
|
||||
|
||||
# Provider Configuration
|
||||
# ---
|
||||
# TODO: Customize your Provider Settings if needed
|
||||
#
|
||||
providers:
|
||||
# DOCKER:
|
||||
# ---
|
||||
#
|
||||
docker:
|
||||
exposedByDefault: false # Default is true
|
||||
Reference in New Issue
Block a user