使用htpasswd命令生成用户名和密码文件
如果没有这个命令就安装httpd,直接yum install httpd
在nginx下conf目录下创建密码htpasswd -bc nginx_passwd support supportabcd
在你想要限制用户的访问目录下加上下面两行
auth_basic "enter username and password "; auth_basic_user_file nginx_passwd;
使用htpasswd命令生成用户名和密码文件
如果没有这个命令就安装httpd,直接yum install httpd
在nginx下conf目录下创建密码htpasswd -bc nginx_passwd support supportabcd
在你想要限制用户的访问目录下加上下面两行
auth_basic "enter username and password "; auth_basic_user_file nginx_passwd;