http密碼登錄認(rèn)證:
yum install httpd-tools -y
#設(shè)置登錄用戶密碼
htpasswd -c -d /etc/nginx/passwd/consul.passwd admin
#配置
auth_basic "Restricted Access";
auth_basic_user_file /etc/nginx/passwd/consul.passwd;
# 使用 wget
wget --http-user=admin --http-passwd=123456 http://res.yinnote.com/xxx.zip
# 使用 curl
curl -u admin:123456 -O http://res.yinnote.com/xxx.zip
image.png
image.png