← back to Kamatera Nginx

sites-available/bleachresistantfabrics.com

16 lines

# bleachresistantfabrics.com — staged 2026-05-10 by onboard-build task
# HTTP-only initially. Once DNS flips from GoDaddy to Cloudflare→Kamatera,
# run: certbot --nginx -d bleachresistantfabrics.com -d www.bleachresistantfabrics.com --non-interactive --agree-tos -m steve@designerwallcoverings.com
server {
  listen 80;
  server_name bleachresistantfabrics.com www.bleachresistantfabrics.com;
  add_header Cache-Control "no-store, must-revalidate" always;
  location / {
    proxy_pass http://127.0.0.1:9921;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
  }
}