-
Notifications
You must be signed in to change notification settings - Fork 9
/
traefik.yml
335 lines (326 loc) · 11.7 KB
/
traefik.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
#@ load("@ytt:data", "data")
#@ load("@ytt:json", "json")
log:
level: #@ data.values.log_level
#@ if data.values.access_logs_enabled == "true":
accessLog:
filePath: #@ data.values.access_logs_path
format: json
#@ end
#@ if data.values.dashboard_entrypoint_enabled == "true":
api:
dashboard: true
#@ end
#@ if data.values.plugins == "true":
experimental:
localPlugins:
#@ if data.values.plugin_blockpath == "true":
blockpath:
modulename: github.com/traefik/plugin-blockpath
#@ end
#@ if data.values.plugin_maxmind_geoip == "true":
geoip:
modulename: github.com/forestvpn/traefikgeoip2
#@ end
#@ if data.values.plugin_referer == "true":
referer:
modulename: github.com/moonlightwatch/referer
#@ end
#@ if data.values.plugin_header_authorization == "true":
headauth:
modulename: github.com/poloyacero/headauth
#@ end
#@ if data.values.plugin_cert_auth == "true":
certauthz:
modulename: github.com/famedly/traefik-certauthz
#@ end
#@ if data.values.plugin_mtls_header == "true":
mtlsheader:
modulename: github.com/pnxs/traefik-plugin-mtls-header
#@ end
#@ end
providers:
#@ if data.values.file_provider == "true":
file:
directory: /data/config/dynamic
watch: #@ data.values.file_provider_watch == "true"
#@ end
#@ if data.values.docker_provider == "true":
docker:
exposedByDefault: false
constraints: #@ data.values.docker_provider_constraints
#@ end
global:
sendAnonymousUsage: #@ data.values.send_anonymous_usage == "true"
tls:
#! Setup the default cert only for those domains configured for the *first* ACME cert:
#! The expected case is that the first certificate will have a wildcard so it captures everything
#! The thing to avoid is listing every single SAN of all the other certs, so just going to use the first one.
#@ acme_cert_domains = json.decode(data.values.acme_cert_domains)
#@ first_cert = acme_cert_domains[0] if len(acme_cert_domains) else []
#@ if len(first_cert) and data.values.acme_enabled == "true":
stores:
default:
defaultGeneratedCert:
resolver: #@ data.values.acme_cert_resolver
domain:
main: #@ first_cert[0]
sans:
#@ for secondary in first_cert[1:]:
- #@ secondary
#@ end
#@ end
certificatesResolvers:
production:
#@ if data.values.acme_enabled == "true":
acme:
caserver: #@ data.values.acme_cert_resolver_production
email: #@ data.values.acme_ca_email
storage: /data/acme-production.json
#@ if data.values.acme_challenge.lower() in ["dns","dns-01"]:
dnsChallenge:
provider: #@ data.values.acme_dns_provider
#@ elif data.values.acme_challenge.lower() in ["tls","tls-alpn-01"]:
tlsChallenge: {}
#@ elif data.values.acme_challenge.lower() in ["http", "http-01"]:
httpChallenge:
entryPoint: web
#@ end
certificatesDuration: #@ data.values.acme_certificates_duration
#@ end
staging:
#@ if data.values.acme_enabled == "true":
acme:
caserver: #@ data.values.acme_cert_resolver_staging
email: #@ data.values.acme_ca_email
storage: /data/acme-staging.json
#@ if data.values.acme_challenge.lower() in ["dns","dns-01"]:
dnsChallenge:
provider: #@ data.values.acme_dns_provider
#@ elif data.values.acme_challenge.lower() in ["tls","tls-alpn-01"]:
tlsChallenge: {}
#@ elif data.values.acme_challenge.lower() in ["http", "http-01"]:
httpChallenge:
entryPoint: web
#@ end
certificatesDuration: #@ data.values.acme_certificates_duration
#@ end
#@yaml/text-templated-strings
entryPoints:
#@ for custom_entrypoint in data.values.custom_entrypoints.split(","):
#@ if not len(custom_entrypoint):
#@ continue
#@ end
#@ entrypoint,listen_host,listen_port,protocol,trusted_nets,use_https = custom_entrypoint.split(":")
(@= entrypoint @):
address: #@ listen_host + ":" + listen_port + "/" + protocol
#@ if use_https == "true":
http:
tls:
#@ if data.values.acme_enabled == "true":
certResolver: #@ data.values.acme_cert_resolver
domains:
#@ for domain in json.decode(data.values.acme_cert_domains):
- main: #@ domain[0]
sans:
#@ for secondary in domain[1]:
- #@ secondary
#@ end
#@ end
#@ end
middlewares:
- strip-headers@file
#@ if len(data.values.error_handler_403_service):
- traefik-websecure-error-handler-403@file
#@ end
#@ if len(data.values.error_handler_404_service):
- traefik-websecure-error-handler-404@file
#@ end
#@ if len(data.values.error_handler_500_service):
- traefik-websecure-error-handler-500@file
#@ end
#@ end
#@ if len(trusted_nets):
proxyProtocol:
trustedIPs:
#@ for allowed_net in trusted_nets.split("-"):
- "(@= allowed_net @)"
#@ end
#@ end
#@ end
#@ if data.values.web_entrypoint_enabled == "true":
web:
address: #@ data.values.web_entrypoint_host + ":" + data.values.web_entrypoint_port
#@ if len(data.values.web_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.web_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
http:
redirections:
entryPoint:
to: websecure
#@ end
#@ if data.values.websecure_entrypoint_enabled == "true":
websecure:
address: #@ data.values.websecure_entrypoint_host + ":" + data.values.websecure_entrypoint_port
#@ if len(data.values.websecure_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.websecure_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
http:
tls:
#@ if data.values.acme_enabled == "true":
certResolver: #@ data.values.acme_cert_resolver
domains:
#@ for domain in json.decode(data.values.acme_cert_domains):
- main: #@ domain[0]
sans:
#@ for secondary in domain[1]:
- #@ secondary
#@ end
#@ end
#@ end
middlewares:
- strip-headers@file
#@ if len(data.values.error_handler_403_service):
- traefik-websecure-error-handler-403@file
#@ end
#@ if len(data.values.error_handler_404_service):
- traefik-websecure-error-handler-404@file
#@ end
#@ if len(data.values.error_handler_500_service):
- traefik-websecure-error-handler-500@file
#@ end
#@ end
#@ if data.values.xmpp_c2s_entrypoint_enabled == "true":
xmpp_c2s:
address: #@ data.values.xmpp_c2s_entrypoint_host + ":" + data.values.xmpp_c2s_entrypoint_port
#@ if len(data.values.xmpp_c2s_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.xmpp_c2s_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
#@ end
#@ if data.values.xmpp_s2s_entrypoint_enabled == "true":
xmpp_s2s:
address: #@ data.values.xmpp_s2s_entrypoint_host + ":" + data.values.xmpp_s2s_entrypoint_port
#@ if len(data.values.xmpp_s2s_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.xmpp_s2s_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
#@ end
#@ if data.values.mqtt_entrypoint_enabled == "true":
mqtt:
address: #@ data.values.mqtt_entrypoint_host + ":" + data.values.mqtt_entrypoint_port
#@ if len(data.values.mqtt_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.mqtt_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
#@ end
#@ if data.values.ssh_entrypoint_enabled == "true":
ssh:
address: #@ data.values.ssh_entrypoint_host + ":" + data.values.ssh_entrypoint_port
#@ if len(data.values.ssh_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.ssh_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
#@ end
#@ if data.values.dashboard_entrypoint_enabled == "true":
traefik:
address: #@ data.values.dashboard_entrypoint_host + ":" + data.values.dashboard_entrypoint_port
#@ end
#@ if data.values.mpd_entrypoint_enabled == "true":
mpd:
address: #@ data.values.mpd_entrypoint_host + ":" + data.values.mpd_entrypoint_port
#@ if len(data.values.mpd_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.mpd_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
#@ end
#@ if data.values.snapcast_entrypoint_enabled == "true":
snapcast:
address: #@ data.values.snapcast_entrypoint_host + ":" + data.values.snapcast_entrypoint_port
#@ if len(data.values.snapcast_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.snapcast_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
#@ end
#@ if data.values.snapcast_control_entrypoint_enabled == "true":
snapcast_control:
address: #@ data.values.snapcast_control_entrypoint_host + ":" + data.values.snapcast_control_entrypoint_port
#@ if len(data.values.snapcast_control_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.snapcast_control_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
#@ end
#@ if data.values.redis_entrypoint_enabled == "true":
redis:
address: #@ data.values.redis_entrypoint_host + ":" + data.values.redis_entrypoint_port
#@ if len(data.values.redis_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.redis_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
#@ end
#@ if data.values.rtmp_entrypoint_enabled == "true":
rtmp:
address: #@ data.values.rtmp_entrypoint_host + ":" + data.values.rtmp_entrypoint_port
#@ if len(data.values.rtmp_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.rtmp_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
#@ end
#@ if data.values.web_plain_entrypoint_enabled == "true":
web_plain:
address: #@ data.values.web_plain_entrypoint_host + ":" + data.values.web_plain_entrypoint_port
#@ if len(data.values.web_plain_entrypoint_proxy_protocol_trusted_ips.strip()):
proxyProtocol:
trustedIPs:
#@ for allowed_net in data.values.web_plain_entrypoint_proxy_protocol_trusted_ips.split(","):
- "(@= allowed_net @)"
#@ end
#@ end
http:
middlewares:
- strip-headers@file
#@ if len(data.values.error_handler_403_service):
- traefik-websecure-error-handler-403@file
#@ end
#@ if len(data.values.error_handler_404_service):
- traefik-websecure-error-handler-404@file
#@ end
#@ if len(data.values.error_handler_500_service):
- traefik-websecure-error-handler-500@file
#@ end
#@ end