caddy: fmt, improve comments

pull/2/head
teutat3s 2022-01-16 22:05:02 +01:00
parent 2f49b8846c
commit 52fb611275
Signed by: teutat3s
GPG Key ID: 4FA1D3FA524F22C1
1 changed files with 17 additions and 5 deletions

View File

@ -1,9 +1,17 @@
# global options
{ {
# acme_ca https://acme-staging-v02.api.letsencrypt.org/directory # remove comment to use staging Let's Encrypt servers (for testing)
# no logging policy, don't log anything # acme_ca https://acme-staging-v02.api.letsencrypt.org/directory
log {
output discard # auto_https contact mail address, for TLS certs notifications (expiry,
} # other problems with certs)
email admins@pub.solar
# default to no-logs-policy, don't log anything
# comment this block out for debugging
log {
output discard
}
} }
# static file server # static file server
@ -11,4 +19,8 @@ miom.space {
root * /srv/miom.space root * /srv/miom.space
file_server file_server
} }
# redirect www. subdomain to apex (root) domain
www.miom.space {
redir https://miom.space{uri}
} }