default.conf 388 B

1234567891011121314151617181920
  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_pass http://pay:8888/pay/;
  16. }
  17. }