nginx反向代理不显示图片

在nginx的配置文件中加上

 location ~ .(jpg|png|jpeg|bmp|gif|swf|css)$
        {
            access_log off;
            expires 30d;
            root /www/htdocs/market;
            break;
        }
原文地址:https://www.cnblogs.com/shabake/p/6772652.html