web-dev-qa-db-ja.com

Nginxディレクトリのパスワード認証を設定するには?

設定方法Nginxディレクトリのパスワード認証/usr/local/nginx/conf/vhost/xxx.xxx.com.confサイト構成ファイル。
このウェブサイトにしたいxxx.xxx.com/12 Apacheに似たパスワードアクセス保護のフォルダ。しかし、nginxの作り方がわかりません
聞いた:場所を設定するためのフォルダパスワード保護?

server
{
        listen       80;
        server_name xxx.xxx.com; #server_name end
        index index.html index.htm index.php; #index end

        set $subdomain '';
        root  /home/wwwroot/xxx.xxx.com/web$subdomain;
        include rewrite/amh.conf; #rewrite end

        #error_page
        error_page 400 /ErrorPages/400.html;
        error_page 403 /ErrorPages/403.html;
        error_page 404 /ErrorPages/404.html;
        error_page 502 /ErrorPages/502.html;
        location ~ /ErrorPages/(400|401|403|404|405|502|503)\.html$ 
        {
                root /home/wwwroot/xxx.xxx.com/web;
        }


        location ~ .*\.php$
        {
                fastcgi_pass  unix:/tmp/php-cgi-xxx.xxx.com.sock;
                fastcgi_index index.php;
                include fcgi-Host.conf;
                fastcgi_param DOCUMENT_ROOT  /web$subdomain;
                fastcgi_param SCRIPT_FILENAME  /web$subdomain$fastcgi_script_name;
        }

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp3|wma)$
        {
                expires      30d;
        }

        location ~ .*\.(js|css)$
        {
                expires      12h;
        }

        access_log off; #access_log end
        error_log /dev/null; #error_log end
}
1
YingRui

.htpasswdファイルを使用したHTTP基本認証の場合、保護されたディレクトリの場所ブロックで auth_basic module を使用します。

location /123 {
  auth_basic "Protected";
  auth_basic_user_file /path/to/.htpasswd;
}
1
dartonw