chore: add Netlify deployment configuration

- netlify.toml: Configure cargo build --release and run compiler.
  Publish directory set to public/.

- static/_headers: Add security headers (X-Frame-Options, CSP, etc.)
  and cache control for static assets (1 year for css/images,
  1 hour for HTML, 1 hour for feed).
This commit is contained in:
Timothy DeHerrera
2026-01-24 22:17:59 -07:00
parent 51b947256d
commit 3a36c2a909
2 changed files with 38 additions and 0 deletions

25
static/_headers Normal file
View File

@@ -0,0 +1,25 @@
# Netlify headers for nrd.sh
# Default headers for all paths
/*
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Referrer-Policy: strict-origin-when-cross-origin
# Cache static assets aggressively
/*.css
Cache-Control: public, max-age=31536000, immutable
/*.png
Cache-Control: public, max-age=31536000, immutable
/*.gif
Cache-Control: public, max-age=31536000, immutable
# HTML pages: short cache, revalidate
/*.html
Cache-Control: public, max-age=3600, must-revalidate
# Feed: moderate cache
/feed.xml
Cache-Control: public, max-age=3600