Nginxサーバーにすべての認証を設定しましたが、パスワード認証のために/var/www/html/t/sms/plivo
のすべてのファイルを除外します。私は別のパスを使用しようとしましたが、ブラウザから/var/www/html/t/sms/plivo
の下のファイルにアクセスしようとすると、常にパスワードを要求します。Nginxのパスワード認証から1つのディレクトリを除外
以下は私の/etc/nginx/sites-available/default
ファイル
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;
server_name _;
auth_basic "Private Property";
auth_basic_user_file /etc/nginx/.htpasswd;
#no password for the plivo folder so we can recieve messages!
location = /t/sms/plivo/ {
auth_basic off;
allow all; # Allow all to see content
}
location/{
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}