The following tutorial column from Pagoda will introduce to you the website setting authentication method in nginx. I hope it will be helpful to friends in need!
Step one:
Generate username and password (must be executed in SSH)
echo -e "用户名:$(openssl passwd -crypt 密码)" > /www/wwwroot/AuthNginx.pl
Step two:
Add the following two lines in pseudo-static
auth_basic 'Login..'; auth_basic_user_file /www/wwwroot/AuthNginx.pl;
The above is the detailed content of Website settings authentication in nginx of Pagoda. For more information, please follow other related articles on the PHP Chinese website!