39204.car-resource-map.conf 438 B

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