前言:使用nginx访问目录时,可能因为站点内容或者流量的关系,我们并不想让所有人都能正常访问,那么我们可以设置访问认证。输入用户名密码才能进入。搭建nginx请参照搭建nginx,并配置https
1、安装htpasswd 工具
yum -y install httpd-tools
2、设置密码,密码保存目录到/usr/local/nginx/passwd
mkdir /usr/local/nginx/
touch /usr/local/nginx/passwd
htpasswd -c /usr/local/nginx/passwd xuboy
New password:
Re-type new password:
Adding password for user xuboy
3、查看加密文件
cat /usr/local/nginx/passwd
4、修改nginx配置文件
charset utf-8;
server{
listen 10194 ssl;
#高版本的nginx开启https需要在监听端口后面加入ssl,和老版本的有所区别
# ssl on;
ssl_certificate /etc/nginx/ssl/ssl.crt;
ssl_certificate_key /etc/nginx/ssl/ssl.key;
ssl_protocols TLSv1.1 TLSv1.2;
server_name test11.xuboy.work;
location / {
root /usr/share/nginx/html;
#存放共享文件的目录路径
autoindex on;#开启nginx目录浏览功能
autoindex_exact_size off;#文件大小从KB开始显示
autoindex_localtime on;#显示文件修改时间为服务器本地时间
auth_basic "Please input password";#可以自定义
auth_basic_user_file /usr/local/nginx/passwd;
}
}
5、重启nginx
nginx -c /etc/nginx/nginx.conf
nginx -s reload