K.MIURA@OUC

The special secret of making dreams come true can be summarized in four C’s. They are Curiosity, Confidence, Courage, and Constancy. –Walt Disney

nginxでBasic認証を有効にする

[基本環境]
  • Ubuntu 18.04
  • nginx 1.16
[apache2-utilsのインストール]
  1. sudo apt update
  2. sudo apt install apache2-utils
[.htpasswdの生成]
  1. cd /home/ユーザ名/
  2. mkdir web
    • webは任意のディレクトリ名で良い
  3. htpasswd -c /home/ユーザ名/web/.htpasswd user-id
    • user-idはBasic認証のユーザ名であり、任意のユーザ名で良い
[nginx.confの編集]
  1. cd /etc/nginx
  2. sudo vi nginx.conf
    • http{…}の中に、
      auth_basic “Your Auth Message”;
      auth_basic_user_file /home/ユーザ名/web/.htpasswd;
      を追加する

Share