default.conf 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. server {
  2. listen 80;
  3. server_name match.dzhhzy.com;
  4. # Proxy settings
  5. location / {
  6. proxy_pass http://match-vote-nextjs-nextjs-1:3000; # 使用完整的容器名称
  7. proxy_http_version 1.1;
  8. proxy_set_header Upgrade $http_upgrade;
  9. proxy_set_header Connection 'upgrade';
  10. proxy_set_header Host $host;
  11. proxy_set_header X-Real-IP $remote_addr;
  12. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  13. proxy_set_header X-Forwarded-Proto $scheme;
  14. proxy_cache_bypass $http_upgrade;
  15. # 添加超时设置
  16. proxy_connect_timeout 60s;
  17. proxy_send_timeout 60s;
  18. proxy_read_timeout 60s;
  19. }
  20. location /uploads {
  21. alias /app/public/uploads;
  22. }
  23. # 添加健康检查路由
  24. location /health {
  25. access_log off;
  26. return 200 'OK';
  27. }
  28. # Security headers
  29. add_header X-Frame-Options "SAMEORIGIN" always;
  30. add_header X-XSS-Protection "1; mode=block" always;
  31. add_header X-Content-Type-Options "nosniff" always;
  32. add_header Referrer-Policy "no-referrer-when-downgrade" always;
  33. # Gzip compression
  34. gzip on;
  35. gzip_vary on;
  36. gzip_proxied any;
  37. gzip_comp_level 6;
  38. gzip_types text/plain text/css text/xml application/json application/javascript application/rss+xml application/atom+xml image/svg+xml;
  39. # 日志格式
  40. access_log /var/log/nginx/match.dzhhzy.com.access.log;
  41. error_log /var/log/nginx/match.dzhhzy.com.error.log;
  42. }