mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-01 03:20:29 +00:00
42 lines
717 B
TOML
42 lines
717 B
TOML
[experimental]
|
|
http3 = true
|
|
|
|
[api]
|
|
dashboard = true
|
|
|
|
[entryPoints.http]
|
|
address = ":80"
|
|
|
|
[entryPoints.https]
|
|
address = ":443"
|
|
|
|
[entryPoints.https.http3]
|
|
|
|
[entryPoints.https.http.tls]
|
|
options = "default"
|
|
certResolver = "letsEncrypt"
|
|
|
|
[[entryPoints.https.http.tls.domains]]
|
|
main = "korhonen.cc"
|
|
sans = ["*.korhonen.cc"]
|
|
|
|
[providers.docker]
|
|
endpoint = "unix:///var/run/docker.sock"
|
|
exposedByDefault = false
|
|
|
|
[providers.file]
|
|
filename = "/dynamic.toml"
|
|
|
|
[certificatesResolvers.letsEncrypt.acme]
|
|
email = "{{env 'ADMIN_EMAIL'}}"
|
|
storage = "acme.json"
|
|
|
|
[certificatesResolvers.letsEncrypt.acme.dnsChallenge]
|
|
provider = "cloudflare"
|
|
|
|
[accessLog]
|
|
filePath = "/var/log/access.log"
|
|
|
|
[accessLog.filters]
|
|
statusCodes = ["400-499"]
|