Ryan Malloy f7b160a9c1 Initial commit: Forrest Mims Electronics Reference Library
Astro site with e-book reader for classic electronics notebooks.
15 Mims notebooks + 1 Ugly's Electrical Reference, served via
Docker/Caddy at mims.l.supported.systems. PDFs tracked with git-lfs.
2026-02-13 05:09:09 -07:00

21 lines
510 B
Caddyfile

:4321 {
root * /srv
file_server
# Handle clean URLs - try file, then directory, then .html extension
try_files {path} {path}/ {path}.html /index.html
# Compression
encode gzip
# Cache static assets
@static {
path *.jpg *.jpeg *.png *.gif *.ico *.css *.js *.pdf *.svg *.woff *.woff2
}
header @static Cache-Control "public, max-age=604800, immutable"
# Security headers
header X-Frame-Options "SAMEORIGIN"
header X-Content-Type-Options "nosniff"
}