I have all directories protected with a password as below.
I have one dir ./opendir
(or: /var/www/opendir
) and I would like it to be open. (not restricted)
How can I do this?
server {
listen 80;
root /var/www/;
index index.php;
server_name localhost;
auth_basic "Restricted";
auth_basic_user_file /var/www/.htpasswd;
location / {
........... ETC ...........