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.toml67
1 files changed, 0 insertions, 67 deletions
diff --git a/support/docker/production/config/traefik.toml b/support/docker/production/config/traefik.toml
deleted file mode 100644
index c0a7cf840..000000000
--- a/support/docker/production/config/traefik.toml
+++ /dev/null
@@ -1,67 +0,0 @@
1# Uncomment this line in order to enable debugging through logs
2# debug = true
3defaultEntryPoints = ["http", "https"]
4
5[entryPoints]
6 [entryPoints.http]
7 address = ":80"
8 [entryPoints.http.redirect]
9 entryPoint = "https"
10 [entryPoints.https]
11 address = ":443"
12 [entryPoints.https.tls]
13 MinVersion = "VersionTLS12"
14 CurvePreferences = [
15 "CurveP521",
16 "CurveP384",
17 "CurveP256"
18 ]
19 PreferServerCipherSuites = true
20 CipherSuites = [
21 "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305",
22 "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305",
23 "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
24 "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
25 "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA",
26 "TLS_RSA_WITH_AES_256_GCM_SHA384",
27 "TLS_RSA_WITH_AES_256_CBC_SHA"
28 ]
29 FrameDeny = false # here we don't want to deny frames since we have an embed
30 STSIncludeSubdomains = true
31 STSSeconds = 315360000
32 STSPreload = true
33 ContentTypeNosniff = true
34 BrowserXssFilter = true
35
36
37# Enable ACME (Let's Encrypt): automatic SSL.
38[acme]
39
40# File or key used for certificates storage.
41#
42# Required
43#
44storage = "/etc/acme.json"
45# or `storage = "traefik/acme/account"` if using KV store.
46
47# Entrypoint to proxy acme apply certificates to.
48# WARNING, if the TLS-SNI-01 challenge is used, it must point to an entrypoint on port 443
49#
50# Required
51#
52entryPoint = "https"
53
54# Use a HTTP-01 acme challenge rather than TLS-SNI-01 challenge
55#
56# Optional but recommend
57#
58[acme.httpChallenge]
59
60 # EntryPoint to use for the challenges.
61 #
62 # Required
63 #
64 entryPoint = "http"
65
66[docker]
67 exposedByDefault = false \ No newline at end of file