29 lines
435 B
Caddyfile
29 lines
435 B
Caddyfile
|
# vim: ft=caddyfile
|
||
|
|
||
|
{
|
||
|
grace_period 60s
|
||
|
import email
|
||
|
#acme_ca "https://acme-staging-v02.api.letsencrypt.org/directory"
|
||
|
}
|
||
|
|
||
|
(basicerrors) {
|
||
|
handle_errors {
|
||
|
templates
|
||
|
rewrite * /index.html
|
||
|
root * /etc/caddy/errors
|
||
|
file_server
|
||
|
}
|
||
|
}
|
||
|
|
||
|
(hsts) {
|
||
|
header Strict-Transport-Security max-age=31536000
|
||
|
}
|
||
|
|
||
|
(log) {
|
||
|
log {
|
||
|
output file /var/log/caddy/access.log
|
||
|
}
|
||
|
}
|
||
|
|
||
|
import conf.d/*
|