You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
708 B
TOML
29 lines
708 B
TOML
defaultEntryPoints = ["http", "https"]
|
|
logLevel = "ERROR"
|
|
accessLogsFile = "/dev/stdout"
|
|
|
|
[entryPoints]
|
|
[entryPoints.http]
|
|
address = ":80"
|
|
[entryPoints.http.redirect]
|
|
entryPoint = "https"
|
|
[entryPoints.https]
|
|
address = ":443"
|
|
[entryPoints.https.tls]
|
|
MinVersion = "VersionTLS11"
|
|
CipherSuites = ["TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA", "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA"]
|
|
|
|
[docker]
|
|
endpoint = "unix:///docker.sock"
|
|
domain = "{{ DOMAIN }}"
|
|
watch = true
|
|
exposedbydefault = false
|
|
|
|
[acme]
|
|
email = "{{ POSTMASTER }}@{{ DOMAIN }}"
|
|
storageFile = "/certs/acme.json"
|
|
onDemand = true
|
|
entryPoint = "https"
|
|
|
|
|