我正在尝试允许 pinterest 访问我的开发站点的图像,当前 nginx deny.conf 正在使用auth_basic
和允许 IP 的列表。里面没有deny all
。satisfy any
也在deny.conf中
我添加allow all
到我的站点配置并重新启动/重新加载 nginx,但仍然被 pinterest 拒绝访问。
location ^~ ^/(cache|media|static)/ {
allow all;
access_log off;
expires 1y;
}
有任何想法吗?