25 lines
516 B
TOML
25 lines
516 B
TOML
|
logLevel = "DEBUG"
|
||
|
defaultEntryPoints = ["https"]
|
||
|
debug = true
|
||
|
rootCAs = [ """{{ .RootCertContent }}""" ]
|
||
|
|
||
|
[entryPoints]
|
||
|
[entryPoints.https]
|
||
|
address = ":8443"
|
||
|
|
||
|
[entryPoints.https.tls]
|
||
|
|
||
|
[entryPoints.https.tls.ClientCA]
|
||
|
files = [ """{{ .RootCertContent }}""" ]
|
||
|
optional = false
|
||
|
|
||
|
[[entryPoints.https.tls.certificates]]
|
||
|
certFile = """{{ .ServerCertContent }}"""
|
||
|
keyFile = """{{ .ServerKeyContent }}"""
|
||
|
|
||
|
[api]
|
||
|
|
||
|
[docker]
|
||
|
endpoint = "unix:///var/run/docker.sock"
|
||
|
watch = true
|