-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtraefik.toml
44 lines (34 loc) · 1018 Bytes
/
traefik.toml
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
logLevel = "DEBUG"
[accessLog]
[api]
dashboard = true
[docker]
endpoint = "unix:///var/run/docker.sock"
watch = true
domain = "docker.localhost"
defaultEntryPoints = ["http", "https"]
[entryPoints]
# # For incoming authentication requests
# [entryPoints.authentication]
# address = ":79"
# For all API requests that need to be authenticated
[entryPoints.http]
address = ":80"
# [entryPoints.http.auth]
# headerField = "Authorization"
# # ...
# # To enable forward auth on an entrypoint
# [entryPoints.http.auth.forward]
# address = "http://auth:3000/verify"
# # Trust existing X-Forwarded-* headers.
# # Useful with another reverse proxy in front of Traefik.
# #
# # Optional
# # Default: false
# #
# trustForwardHeader = true
# # Copy headers from the authentication server to the request.
# #
# # Optional
# #
# authResponseHeaders = ["X-Auth-User", "X-Secret", "X-Forwarded-User"]