traefik/integration/fixtures/https/https_sni.toml

41 lines
940 B
TOML
Raw Normal View History

2015-11-21 01:59:49 +00:00
logLevel = "DEBUG"
2016-02-01 10:07:05 +00:00
defaultEntryPoints = ["https"]
2015-11-21 01:59:49 +00:00
2016-02-01 10:07:05 +00:00
[entryPoints]
[entryPoints.https]
address = ":4443"
[entryPoints.https.tls]
[[entryPoints.https.tls.certificates]]
certFile = "fixtures/https/snitest.com.cert"
keyFile = "fixtures/https/snitest.com.key"
2016-02-01 10:07:05 +00:00
[[entryPoints.https.tls.certificates]]
certFile = "fixtures/https/snitest.org.cert"
keyFile = "fixtures/https/snitest.org.key"
2015-11-21 01:59:49 +00:00
[api]
2015-11-21 01:59:49 +00:00
[file]
2018-11-14 09:18:03 +00:00
[Routers]
[Routers.router1]
Service = "service1"
Rule = "Host:snitest.com"
[Routers.router2]
Service = "service2"
Rule = "Host:snitest.org"
[Services]
[Services.service1]
[Services.service1.LoadBalancer]
[[Services.service1.LoadBalancer.Servers]]
URL = "http://127.0.0.1:9010"
Weight = 1
[Services.service2]
[Services.service2.LoadBalancer]
[[Services.service2.LoadBalancer.Servers]]
URL = "http://127.0.0.1:9020"
Weight = 1