aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/production/config/traefik.toml
diff options
context:
space:
mode:
Diffstat (limited to 'support/docker/production/config/traefik.toml')
-rw-r--r--support/docker/production/config/traefik.toml23
1 files changed, 23 insertions, 0 deletions
diff --git a/support/docker/production/config/traefik.toml b/support/docker/production/config/traefik.toml
index 775a26515..882c95548 100644
--- a/support/docker/production/config/traefik.toml
+++ b/support/docker/production/config/traefik.toml
@@ -7,6 +7,29 @@ defaultEntryPoints = ["http", "https"]
7 [entryPoints.https] 7 [entryPoints.https]
8 address = ":443" 8 address = ":443"
9 [entryPoints.https.tls] 9 [entryPoints.https.tls]
10 MinVersion = "VersionTLS12"
11 CurvePreferences = [
12 "CurveP521",
13 "CurveP384",
14 "CurveP256"
15 ]
16 PreferServerCipherSuites = true
17 CipherSuites = [
18 "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305",
19 "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305",
20 "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
21 "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
22 "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA",
23 "TLS_RSA_WITH_AES_256_GCM_SHA384",
24 "TLS_RSA_WITH_AES_256_CBC_SHA"
25 ]
26 FrameDeny = false # here we don't want to deny frames since we have an embed
27 STSIncludeSubdomains = true
28 STSSeconds = 315360000
29 STSPreload = true
30 ContentTypeNosniff = true
31 BrowserXssFilter = true
32
10 33
11# Enable ACME (Let's Encrypt): automatic SSL. 34# Enable ACME (Let's Encrypt): automatic SSL.
12[acme] 35[acme]