Basic 認証

/usr/bin/htpasswd をインストール

# pacman -S apache

ユーザ名とパスワードを追加

$ sudo htpasswd -c /etc/nginx/.htpasswd username

/etc/nginx/nginx.conf
   server {

        location / {

        auth_basic "Restricted";
        auth_basic_user_file /etc/nginx/.htpasswd;
	}
nginx.conf の確認
# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
再起動
# systemctl restart nginx

パスワードの変更

$ sudo htpasswd -c /etc/nginx/.htpasswd username


Return

Mar/01/2017 AM 08:15