All checks were successful
Build and Deploy Container / build_and_deploy (push) Successful in 25s
21 lines
473 B
Caddyfile
21 lines
473 B
Caddyfile
:3001 {
|
|
# 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"
|
|
}
|
|
}
|