| 12345678910111213141516171819202122232425262728293031323334 |
- 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 /h5/ {
- add_header Cache-Control no-cache;
- try_files $uri /h5/index.html;
- root /usr/share/nginx/html;
- }
- location /dexdev {
- proxy_pass http://data.hofo.co:9000;
- }
-
- location /api {
- proxy_pass https://youdao.hofo.co;
- }
- }
|