37 lines
981 B
TOML
37 lines
981 B
TOML
logLevel = "DEBUG"
|
|
|
|
defaultEntryPoints = ["https"]
|
|
|
|
[entryPoints]
|
|
[entryPoints.https]
|
|
address = ":4443"
|
|
[entryPoints.https.tls]
|
|
[entryPoints.https.tls.defaultCertificate]
|
|
certFile = "fixtures/https/snitest.com.cert"
|
|
keyFile = "fixtures/https/snitest.com.key"
|
|
[[entryPoints.https.tls.certificates]]
|
|
certFile = "fixtures/https/wildcard.snitest.com.cert"
|
|
keyFile = "fixtures/https/wildcard.snitest.com.key"
|
|
[[entryPoints.https.tls.certificates]]
|
|
certFile = "fixtures/https/www.snitest.com.cert"
|
|
keyFile = "fixtures/https/www.snitest.com.key"
|
|
|
|
[api]
|
|
|
|
[file]
|
|
|
|
[backends]
|
|
[backends.backend1]
|
|
[backends.backend1.servers.server1]
|
|
url = "http://127.0.0.1:9010"
|
|
weight = 1
|
|
|
|
[frontends]
|
|
[frontends.frontend1]
|
|
backend = "backend1"
|
|
[frontends.frontend1.routes.test_1]
|
|
rule = "Host:snitest.com"
|
|
[frontends.frontend2]
|
|
backend = "backend1"
|
|
[frontends.frontend2.routes.test_1]
|
|
rule = "Host:www.snitest.com"
|