| 123456789101112131415161718192021222324252627282930313233 |
- server {
- listen 80;
- # gzip config
- gzip on;
- gzip_min_length 1k;
- gzip_comp_level 9;
- gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml;
- gzip_vary on;
- gzip_disable "MSIE [1-6]\.";
- root /usr/share/nginx/html;
- location / {
- add_header Cache-Control no-cache;
- try_files $uri $uri/ /index.html;
- }
- location /dexdev {
- proxy_pass http://192.168.20.224:9000;
- }
- location /app-api/dexdev {
- proxy_pass http://192.168.20.224:9000/dexdev/;
- }
-
- location /api {
- proxy_pass https://youdao.hofo.co;
- }
- location /fWjxqMG1N0.txt {
- return 200 '00486947c95f9cc11e3d92353e2fefe1';
- }
- }
|