traefik/integration/fixtures/https/rootcas/https_with_file.toml

27 lines
462 B
TOML
Raw Normal View History

2017-06-23 15:15:07 +02:00
logLevel = "DEBUG"
defaultEntryPoints = ["http"]
# Use certificate in net/internal/testcert.go
2018-04-06 03:38:03 -04:00
rootCAs = [ "fixtures/https/rootcas/local.crt"]
2017-06-23 15:15:07 +02:00
[entryPoints]
[entryPoints.http]
address = ":8081"
[api]
2017-06-23 15:15:07 +02:00
[file]
[backends]
[backends.backend1]
[backends.backend1.servers.server1]
url = "{{ .BackendHost }}"
2018-04-11 16:30:04 +02:00
weight = 1
2017-06-23 15:15:07 +02:00
[frontends]
[frontends.frontend1]
backend = "backend1"
[frontends.frontend1.routes.test_1]
2017-09-07 03:02:03 -07:00
rule = "Path: /ping"