nginx HttpAuthBasicModule 身份认证配置 auth_basic
1. 首先生成密码
Passwords must be encoded by function crypt(3). If Apache is installed, you can create the password file using the htpasswd program included.
crypt() 函数在php、perl里均有,盐值与input一样就可以。
<?php
echo crypt($argv[1], $argv[1]),"\n";
?>
2. 添加至配置文件
nginx.conf 配置里添加
location / {
auth_basic "Restricted";
auth_basic_user_file htpasswd;
}
这里要保证 htpasswd 这个文件可以被找到。
一把保存至 /usr/local/nginx/conf/htpasswd
这个文本文件就是记录 用户名:加密密码
3. reload nginx
相关推荐
nginxs 2020-11-14
Guanjs0 2020-11-13
小木兮子 2020-11-11
yserver 2020-11-11
ssihc0 2020-11-11
windle 2020-11-10
HanksWang 2020-11-10
liuchen0 2020-11-10
Freshairx 2020-11-10
ccschan 2020-11-10
liwf 2020-11-10
Guanjs0 2020-11-09
AderStep 2020-11-09
zrtlin 2020-11-09
mqfcu 2020-11-10
windle 2020-10-29