12345678910111213141516171819 |
- server {
- listen 39205;
- listen [::]:39205;
- server_name localhost;
- location / {
- root /app/house-data-check/dist;
- index index.html index.htm;
- try_files $uri $uri/ /index.html;
- }
- # 后端
- location /house-car/house/data-check/api {
- proxy_pass http://172.16.107.4:39100;
- }
- # minio
- location /house-car/oss {
- proxy_pass http://172.16.107.4:39000;
- }
- }
|