静态资源不走反向代理

静态资源不走反向代理

location ~* \.(jpg|jpeg|gif|png|ico|css|js|pdf|txt)$
{
#return 200 ‘{“status”:”success”,”result”:$uri+”-“+$args}’;
root /home/www/;
autoindex on;
access_log off;
expires 30d;
}

 

把不是443的全部跳转到443

if($server_port !~443){

rewrite ^(/.*)$  https://$host$1 permanent;

}

 

未经允许不得转载:微信 美文-微信文章库-我的知识库 » 静态资源不走反向代理

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

我的知识库