nginx 添加登陆验证
2018-06-22 本文已影响0人
逆行的小电驴
- centos使用httpd生产密码文件
- 我是Ubuntu所以使用htpassword
提示显示没有安装工具,并提示可安装的命令
- 安装apache2-utils
apt install apache2-utils
-
创建密码文件
htpasswd -c /usr/local/nginx/password/.htpasswd admin -
编辑配置文件开启登陆验证
image.png
allow 113.240.22.246;
auth_basic "Restricted";
auth_basic_user_file /usr/local/nginx/password/.htpasswd;
-
加载nginx配置文件
./nginx -s reload -
访问测试
image.png