diff options
author | Chocobozzz <me@florianbigard.com> | 2020-12-30 16:53:11 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-12-30 17:06:21 +0100 |
commit | afd4ee86ddb97f8d49585fddd318bedcd3ad55b8 (patch) | |
tree | fae625fc92ba84936a063275dac122c1f4e8eb46 /support/docker/production/config | |
parent | 83d4aba676ce376fe68ff17e7d92b037b108c2f1 (diff) | |
download | PeerTube-afd4ee86ddb97f8d49585fddd318bedcd3ad55b8.tar.gz PeerTube-afd4ee86ddb97f8d49585fddd318bedcd3ad55b8.tar.zst PeerTube-afd4ee86ddb97f8d49585fddd318bedcd3ad55b8.zip |
Remove traefik docker support
Diffstat (limited to 'support/docker/production/config')
-rw-r--r-- | support/docker/production/config/traefik.toml | 67 |
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 | ||
3 | defaultEntryPoints = ["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 | # | ||
44 | storage = "/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 | # | ||
52 | entryPoint = "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 | ||