:{$PORT:8080} {
	root * /usr/share/caddy
	encode zstd gzip

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

	@staticDemo path /static-demo/*
	handle @staticDemo {
		file_server
	}

	handle {
		header Cache-Control "no-cache"
		file_server
	}
}
