1234567891011121314151617181920212223242526 |
- server {
- listen 8300;
- charset utf-8;
- location / {
- root /home/qmth/project/exam-reserve/web/dist/;
- try_files $uri $uri/ /index.html;
- }
- location ^~ /wap/ {
- alias /home/qmth/project/exam-reserve/wap/dist/;
- try_files $uri $uri/ /wap/index.html;
- }
- location ^~ /file/ {
- alias /home/qmth/project/exam-reserve/static/file/;
- add_header Access-Control-Allow-Origin *;
- }
- location ^~ /api/ {
- proxy_pass http://localhost:8301;
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- }
- }
|