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.
32 lines
815 B
TOML
32 lines
815 B
TOML
7 years ago
|
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"]
|
||
|
[[entryPoints.https.tls.certificates]]
|
||
|
CertFile = "/certs/cert.pem"
|
||
|
KeyFile = "/certs/key.pem"
|
||
|
|
||
|
[docker]
|
||
|
endpoint = "unix:///docker.sock"
|
||
|
domain = "{{ DOMAIN }}"
|
||
|
watch = true
|
||
|
exposedbydefault = false
|
||
|
|
||
|
[acme]
|
||
|
email = "{{ POSTMASTER }}@{{ DOMAIN }}"
|
||
|
storageFile = "/certs/acme.json"
|
||
|
onDemand = true
|
||
|
entryPoint = "https"
|
||
|
|
||
|
|