default.conf 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. # 添加健康检查路由
  21. location /health {
  22. access_log off;
  23. return 200 'OK';
  24. }
  25. # Security headers
  26. add_header X-Frame-Options "SAMEORIGIN" always;
  27. add_header X-XSS-Protection "1; mode=block" always;
  28. add_header X-Content-Type-Options "nosniff" always;
  29. add_header Referrer-Policy "no-referrer-when-downgrade" always;
  30. # Gzip compression
  31. gzip on;
  32. gzip_vary on;
  33. gzip_proxied any;
  34. gzip_comp_level 6;
  35. gzip_types text/plain text/css text/xml application/json application/javascript application/rss+xml application/atom+xml image/svg+xml;
  36. # 日志格式
  37. access_log /var/log/nginx/match.dzhhzy.com.access.log;
  38. error_log /var/log/nginx/match.dzhhzy.com.error.log;
  39. }