39205.house-data-check.conf 438 B

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