-
Notifications
You must be signed in to change notification settings - Fork 23
/
traefik.yml
230 lines (202 loc) · 4.96 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
## Static configuration
log:
level: INFO
accessLog:
filePath: /etc/traefik/access.log
bufferingSize: 1000
api:
dashboard: true
providers:
file:
filename: /etc/traefik/traefik.yml
watch: true
entryPoints:
web:
address: ":80"
web-secure:
address: ":443"
certificatesResolvers:
letsencrypt:
acme:
caServer: https://acme-v02.api.letsencrypt.org/directory
email: YOUR EMAIL
storage: /etc/traefik/acme.json
dnsChallenge:
provider: your-domain-provider
delayBeforeCheck: 0
tls:
options:
default:
sniStrict: true
minVersion: VersionTLS12
cipherSuites:
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
## Dynamic configuration
http:
routers:
#DASHBOARD
api-redirect:
rule: Host(`subdomain.doamin.tld`)
entryPoints:
- web
middlewares:
- https-redirect
service: api@internal
api-router:
rule: Host(`subdomain.doamin.tld`)
entryPoints:
- web-secure
middlewares:
- security-headers
- api-auth
service: api@internal
tls:
certResolver: letsencrypt
domains:
- main: "*.doamin.tld"
options: default
#NEXTCLOUD
nextcloud-redirect:
rule: Host(`subdomain.doamin.tld`)
entryPoints:
- web
middlewares:
- https-redirect
service: nextcloud
nextcloud-router:
rule: Host(`subdomain.doamin.tld`)
entryPoints:
- web-secure
middlewares:
- security-headers
- nextcloud-redirect
service: nextcloud
tls:
certResolver: letsencrypt
domains:
- main: "*.doamin.tld"
options: default
#BITWARDEN UI
bitwarden-ui-redirect:
rule: Host(`subdomain.doamin.tld`)
entryPoints:
- web
middlewares:
- https-redirect
service: bitwarden-ui
bitwarden-ui-router:
rule: Host(`subdomain.doamin.tld`)
entryPoints:
- web-secure
middlewares:
- security-headers
service: bitwarden-ui
tls:
certResolver: letsencrypt
domains:
- main: "*.doamin.tld"
options: default
#BITWARDEN WEBSOCKET
bitwarden-websocket-router:
rule: Host(`subdomain.doamin.tld`) && Path(`/notifications/hub`)
entryPoints:
- web-secure
middlewares:
- security-headers
service: bitwarden-websocket
tls:
certResolver: letsencrypt
domains:
- main: "*.doamin.tld"
options: default
#JELLYFIN
jellyfin-redirect:
rule: Host(`subdomain.doamin.tld`)
entryPoints:
- web
middlewares:
- https-redirect
service: jellyfin
jellyfin-router:
rule: Host(`subdomain.doamin.tld`)
entryPoints:
- web-secure
middlewares:
- security-headers
service: jellyfin
tls:
certResolver: letsencrypt
domains:
- main: "*.doamin.tld"
options: default
#DOCUMENTSERVER
documentserver-redirect:
rule: Host(`subdomain.doamin.tld`)
entryPoints:
- web
middlewares:
- https-redirect
service: documentserver
documentserver-router:
rule: Host(`subdomain.doamin.tld`)
entryPoints:
- web-secure
middlewares:
- security-headers
service: documentserver
tls:
certResolver: letsencrypt
domains:
- main: "*.doamin.tld"
options: default
middlewares:
https-redirect:
redirectScheme:
scheme: https
api-auth:
basicAuth:
users:
- dashbOardUser:password-hash
security-headers:
headers:
referrerPolicy: no-referrer
forceSTSHeader: true
stsSeconds: 31536000
stsIncludeSubdomains: true
stsPreload: true
contentTypeNosniff: true
browserXssFilter: true
customRequestHeaders:
X-Forwarded-Proto: https
customResponseHeaders:
X-Powered-By: "Redstone"
Server: "Server"
nextcloud-redirect:
redirectRegex:
permanent: true
regex: http://(.*)/.well-known/(card|cal)dav
replacement: http://$$1/remote.php/dav/
services:
nextcloud:
loadBalancer:
servers:
- url: http://nextcloud:80
jellyfin:
loadBalancer:
servers:
- url: http://jellyfin:8096
bitwarden-ui:
loadBalancer:
servers:
- url: http://bitwarden:80
bitwarden-websocket:
loadBalancer:
servers:
- url: ws://bitwarden:3012
documentserver:
loadBalancer:
servers:
- url: http://documentserver:80