traefik/integration/fixtures/https/https_sni.toml

39 lines
916 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]
[backends]
[backends.backend1]
[backends.backend1.servers.server1]
url = "http://127.0.0.1:9010"
2018-04-11 14:30:04 +00:00
weight = 1
2015-11-21 01:59:49 +00:00
[backends.backend2]
[backends.backend2.servers.server1]
url = "http://127.0.0.1:9020"
2018-04-11 14:30:04 +00:00
weight = 1
2015-11-21 01:59:49 +00:00
[frontends]
[frontends.frontend1]
backend = "backend1"
[frontends.frontend1.routes.test_1]
rule = "Host:snitest.com"
2015-11-21 01:59:49 +00:00
[frontends.frontend2]
backend = "backend2"
[frontends.frontend2.routes.test_2]
rule = "Host:snitest.org"