美文网首页
nginx 添加登陆验证

nginx 添加登陆验证

作者: 逆行的小电驴 | 来源:发表于2018-06-22 14:51 被阅读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

    相关文章

      网友评论

          本文标题:nginx 添加登陆验证

          本文链接:https://www.haomeiwen.com/subject/jcukyftx.html