intitial
Some checks failed
Build and Deploy Container / build_and_deploy (push) Failing after 33s

This commit is contained in:
Clemens Hering
2025-11-19 21:57:50 +01:00
parent 9490050690
commit 74a6ae33b9
13 changed files with 0 additions and 0 deletions

20
Caddyfile Normal file
View File

@@ -0,0 +1,20 @@
:80 {
# Set the root directory for the static site
root * /usr/share/caddy
# Enable file server
file_server
# Enable compression (gzip/zstd)
encode gzip zstd
# Security headers (optional but recommended)
header {
# Enable HSTS
Strict-Transport-Security "max-age=31536000;"
# Disable MIME sniffing
X-Content-Type-Options "nosniff"
# XSS protection
X-XSS-Protection "1; mode=block"
}
}