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

27 lines
462 B
TOML
Raw Normal View History

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