nginx做方向代理不显示图片的问题
时间:2016-09-10 14:37 来源:linux.it.net.cn 作者:IT
在nginx的配置文件中加上
location ~ \.(jpg|png|jpeg|bmp|gif|swf|css)$
{
access_log off;
expires 30d;
root /www/htdocs/market;
break;
}
(责任编辑:IT)
在nginx的配置文件中加上 location ~ \.(jpg|png|jpeg|bmp|gif|swf|css)$ { access_log off; expires 30d; root /www/htdocs/market; break; } (责任编辑:IT) |