Files
LetsBeBiz-Site/nginx/staging.letsbe.biz.conf
Matt c7d466f9ef
All checks were successful
Build & Push / build-and-push (push) Successful in 1m31s
infra: change host port from 3000 to 3847
Port 3000 is already in use on the server.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 21:17:49 +01:00

49 lines
1.4 KiB
Plaintext

server {
listen 80;
listen [::]:80;
server_name staging.letsbe.biz;
# Certbot will add SSL config after: sudo certbot --nginx -d staging.letsbe.biz
location / {
proxy_pass http://127.0.0.1:3847;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
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;
proxy_cache_bypass $http_upgrade;
proxy_read_timeout 86400;
}
# Static assets — long cache
location /_next/static/ {
proxy_pass http://127.0.0.1:3847;
proxy_cache_valid 200 365d;
add_header Cache-Control "public, max-age=31536000, immutable";
}
# Public assets
location /images/ {
proxy_pass http://127.0.0.1:3847;
proxy_cache_valid 200 30d;
add_header Cache-Control "public, max-age=2592000";
}
# Payload media uploads
location /media/ {
proxy_pass http://127.0.0.1:3847;
proxy_cache_valid 200 30d;
add_header Cache-Control "public, max-age=2592000";
}
# Security headers
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
client_max_body_size 50M;
}