1234567891011121314151617181920212223242526 |
- server {
- listen 7700;
- charset utf-8;
- location ~* (js|css|img|fonts|models) {
- root /home/admin/project/union-question/static-new/admin/dist;
- }
-
- location / {
- root /home/admin/project/union-question/static-new/admin/dist;
- index index.html;
- }
- location ^~ /admin/ {
- rewrite ^/(.*) /index.html break;
- root /home/admin/project/union-question/static-new/admin/dist;
- }
- location ^~ /api/uq_basic/ {
- proxy_pass http://192.168.10.39:7001;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- }
- }
|