Headers Studio
Build a visible security-header baseline, tune CSP connectivity and export it for Nginx, Apache, Next.js or Vercel deployment.
HEADERS STUDIO / DEPLOYMENT CONFIGREVIEW BEFORE PRODUCTION
X-Content-Type-Options
nosniffReferrer-Policy
strict-origin-when-cross-originStrict-Transport-Security
max-age=31536000; includeSubDomainsX-Frame-Options
DENYPermissions-Policy
camera=(), microphone=(), geolocation=()Content-Security-Policy
default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; connect-src 'self' https://api.example.com; font-src 'self' data:; object-src 'none'; base-uri 'self'; frame-ancestors 'none'OUTPUT / security-headers.conf6 HEADERS
add_header X-Content-Type-Options "nosniff" always; add_header Referrer-Policy "strict-origin-when-cross-origin" always; add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always; add_header X-Frame-Options "DENY" always; add_header Permissions-Policy "camera=(), microphone=(), geolocation=()" always; add_header Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; connect-src 'self' https://api.example.com; font-src 'self' data:; object-src 'none'; base-uri 'self'; frame-ancestors 'none'" always;
IMPLEMENTATION NOTES / 1
Enable HSTS only after HTTPS works on every included subdomain.
Generated policy is a secure starting point, not a substitute for testing actual scripts, embeds, APIs and reporting in staging.
SECURITY / BASELINEReviewable policy
Every generated header and value stays visible instead of hiding decisions behind a score.
FORMATS / 04Stack-aware export
Use the same selection to produce four practical configuration formats.
SCOPE / HONESTTest before release
CSP and cross-origin settings depend on the real application and must be verified in staging.