使用nginx做静态缓存,但是未登录用户不允许访问数据显示页面,以下这样配置的话,登录也不能访问。小白求解答
#不登录情况下禁止直接访问 location ^~ /admin/{ deny all; } #location ^~ /js/{ # deny all; #}
可以使用 http auth限制访问,访问时弹出一个框,让你输入账号密码,输入后就可以无限制访问了。
具体配置请参考 nginx http auth module:
http://nginx.org/en/docs/http/ngx_http_auth_basic_module.html
可以使用 http auth限制访问,访问时弹出一个框,让你输入账号密码,输入后就可以无限制访问了。
具体配置请参考 nginx http auth module:
http://nginx.org/en/docs/http/ngx_http_auth_basic_module.html