Software

設定 NGINX 使用密碼才可開啟網頁

  1. 建立帳號
    sh -c "echo -n 'bright:' >> /etc/nginx/.htpasswd"
  2. 利用 openssl 建立密碼
    sh -c "openssl passwd -apr1 >> /etc/nginx/.htpasswd"
  3. 加入 NGINX conf 設定
    auth_basic "Restricted Content";
    auth_basic_user_file /etc/nginx/.htpasswd;