39202.house-report.conf 431 B

1234567891011121314151617181920
  1. server {
  2. listen 39202;
  3. listen [::]:39202;
  4. server_name localhost;
  5. location / {
  6. root /app/house-report/dist;
  7. index index.html index.htm;
  8. try_files $uri $uri/ /index.html;
  9. }
  10. # 后端
  11. location /house-car/house/report/api {
  12. proxy_pass http://172.16.107.4:39100;
  13. }
  14. # minio
  15. location /house-car/oss {
  16. proxy_pass http://172.16.107.4:39000;
  17. }
  18. }