• 简单的实现HTTP密码验证登陆


    1.首先需要安装 httpd-tools

    yum install -y httpd-tools

    2.安装完成后设置用户名密码,我这里用的是NGINX  

       htpasswd -bc /mypath/nginx/conf/htpasswd.users admin(注:用户名) 123456(注:密码)

    3. 修改nginx的配置:

    
    
    server {
            listen       80;
            server_name  elk.log.com;
    
            #charset koi8-r;
            #access_log  logs/host.access.log  main;
    
           auth_basic "Restricted Access";
           auth_basic_user_file /mypath/nginx/conf/htpasswd.users;      #登录验证
           location / {
    
               proxy_pass http://127.0.0.1:5601;     #转发到你指定的域名或IP
               proxy_http_version 1.1;
               proxy_set_header Upgrade $http_upgrade;
               proxy_set_header Connection 'upgrade';
               proxy_set_header Host $host;
               proxy_cache_bypass $http_upgrade;
               allow 192.168.0.1;  #允许的IP
               allow 118.133.10.6; #允许的IP
               deny all;
           }
    }
  • 相关阅读:
    [转]Maven类包冲突终极三大解决技巧
    python chardet 模块
    python pretty-errors模块
    认识执行时机
    python对象销毁顺序
    python字符串驻留
    python绘图练习
    小练习2
    小练习
    4G 内存处理 10G 大小的文件
  • 原文地址:https://www.cnblogs.com/lhlucky/p/10491469.html
Copyright © 2020-2023  润新知