nginx 账号认证功能


nginx 账号认证功能

//创建账号密码
yum -y install httpd-tools
mkdir -p /usr/share/nginx/passwd
htpasswd -cbm /usr/share/nginx/passwd/.htpasswd user1 123456
htpasswd -bm /usr/share/nginx/passwd/.htpasswd user2 123456
//修改nginx配置文件
location = /login {
	root /usr/share/nginx/html/;
	index index.html;
	auth_basic	"login password";
	auth_basic_user_file /usr/share/nginx/passwd/.htpasswd;
}

nginx -s reload

image

输入账号密码后可以看到内容

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/282991.html

(0)
上一篇 2022年8月30日
下一篇 2022年8月30日

相关推荐

发表回复

登录后才能评论