default.conf 676 B

1234567891011121314151617181920212223242526
  1. server {
  2. listen 80;
  3. listen [::]:80;
  4. server_name localhost;
  5. location / {
  6. root /usr/share/nginx/html;
  7. index index.html index.htm;
  8. }
  9. error_page 500 502 503 504 /50x.html;
  10. location = /50x.html {
  11. root /usr/share/nginx/html;
  12. }
  13. # 支付接口
  14. location /pay/ {
  15. proxy_set_header Host $host:$server_port; #远程主机 IP:PORT
  16. proxy_set_header X-Real-PORT $remote_port; #远程端口
  17. proxy_set_header X-Real-IP $remote_addr; #远程地址
  18. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; #远程代理地址
  19. proxy_pass http://pay:8888/;
  20. }
  21. }