29 lines
571 B
TOML
29 lines
571 B
TOML
|
logLevel = "DEBUG"
|
||
|
|
||
|
defaultEntryPoints = ["https"]
|
||
|
|
||
|
[entryPoints]
|
||
|
[entryPoints.https]
|
||
|
address = ":4443"
|
||
|
[entryPoints.https.tls]
|
||
|
sniStrict = true
|
||
|
[entryPoints.https.tls.defaultCertificate]
|
||
|
certFile = "fixtures/https/snitest.com.cert"
|
||
|
keyFile = "fixtures/https/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"
|