Nginx禁用单个目录的密码保护

时间:2013-11-20 23:28:29

标签: nginx

我用密码保护所有目录,如下所示。

我有一个目录./opendir(或:/var/www/opendir),我希望它是开放的。 (不受限制)

我该怎么做?

server {
        listen       80;

        root /var/www/;
        index index.php;

        server_name localhost;

        auth_basic "Restricted";
        auth_basic_user_file /var/www/.htpasswd;

        location / {
        ........... ETC ...........

1 个答案:

答案 0 :(得分:1)

location ^~ /myurl/ {
            auth_basic off;
            autoindex on;
   }