# TEMPLATE — Caddyfile du site statique d'une coquille.
# Copier dans <coquille>/web/Caddyfile tel quel.

:80 {
	root * /srv

	handle /_astro/* {
		header Cache-Control "public, max-age=31536000, immutable"
		file_server
	}

	handle {
		try_files {path} {path}/ /index.html
		file_server
	}

	encode zstd gzip
}
