39203.car-report.conf 426 B

12345678910111213141516171819
  1. server {
  2. listen 39203;
  3. listen [::]:39203;
  4. server_name localhost;
  5. location / {
  6. root /app/car-report/dist;
  7. index index.html index.htm;
  8. try_files $uri $uri/ /index.html;
  9. }
  10. # 后端
  11. location /house-car/car/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. }