标签:htpasswd login 限制 openssl nginx auth location http 不能
生成密码文件htpasswd -c -d conf/htpasswd kibana
printf "kibana:$(openssl passwd -crypt 4Bo*3Jdhk)\n" >>htpasswd
server {} 中添加,还可以在http,location等配置段中添加
auth_basic "nginx basic auth";
auth_basic_user_file htpasswd;
/usr/sbin/nginx --启动
pkill nginx --停止
nginx -s reload --重新加载配置文件
nginx_tcp_proxy_module
tcp {
upstream ha {
server 192.168.164.245:2255;
}
server {
listen 2255;
proxy_pass ha;
auth_basic "login test";
auth_basic_user_file conf/htpasswd;
}
}
标签:htpasswd login 限制 openssl nginx auth location http 不能
原文地址:http://blog.51cto.com/395469372/2317862