default.conf 824 B

12345678910111213141516171819202122232425262728293031323334
  1. http {
  2. set_real_ip_from 0.0.0.0/0;
  3. real_ip_header X-Forwarded-For;
  4. server {
  5. listen 80;
  6. listen [::]:80;
  7. server_name localhost;
  8. location / {
  9. root /usr/share/nginx/html;
  10. index index.html index.htm;
  11. }
  12. error_page 500 502 503 504 /50x.html;
  13. location = /50x.html {
  14. root /usr/share/nginx/html;
  15. }
  16. # 支付接口
  17. location /pay/ {
  18. # proxy_set_header Host $host;
  19. # proxy_set_header X-Forwarded-For $remote_addr;
  20. # proxy_set_header X-Forwarded-Host $server_name;
  21. # proxy_set_header X-Real-IP $remote_addr;
  22. proxy_set_header X-Real-IP $remote_addr;
  23. proxy_set_header X-Forwarded-For $remote_addr;
  24. # real_client_ip = $realip_remote_addr;
  25. proxy_pass http://pay:8888/pay/;
  26. }
  27. }
  28. }