セキュリティ上の理由から、他の人に見られたくない Web コンテンツを展開したり、セキュリティを強化したりできます。
展開手順:
まず、Apache の htpasswd 関数を使用してユーザー名とパスワードを生成します:
htpasswd -c /usr/local/nginx/conf/test.pass test New password:123456
2. nginx 構成ファイルの場所に次の 2 行を追加します:
location / { root /usr/share; index index.php index.html index.htm; auth_basic "Authorized users only"; auth_basic_user_file conf/test.pass; }