- #PROXY-START/
- location ^~ /api
- {
- proxy_pass https://xdhk.com;
- proxy_set_header Host api.xdhk.com;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proQQxy_add_x_forwarded_for;
- proxy_set_header REMOTE-HOST $remote_addr;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection $connection_upgrade;
- proxy_http_version 1.1;
- # proxy_hide_header Upgrade;
- add_header X-Cache $upstream_cache_status;
- #Set Nginx Cache
- proxy_set_header Accept-Encoding "";
- sub_filter "/api/" "/";
- sub_filter_once off;
- set $static_filerHZx92w7 0;
- if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" )
- {
- set $static_filerHZx92w7 1;
- expires 1m;
- }
- if ( $static_filerHZx92w7 = 0 )
- {
- add_header Cache-Control no-cache;
- }
- }
- #PROXY-END/
复制代码 |