nginx启动HTTP Basic Authentication

  • Post author:
  • Post category:其他


这个比较简单了!!使用apache2 的httpd-tools工具写一个http password ,然后加载一下配置就好了。

yum install httpd-tools -y
mkdir -p /etc/apache2
#初次创建需要-c 
htpasswd -c /etc/apache2/.htpasswd centosvmuser01
输入两次密码
htpasswd  /etc/apache2/.htpasswd centosvmuser02
输入两次密码
htpasswd  /etc/apache2/.htpasswd centosvmuser03
输入两次密码

使用例子:

location /api {
    auth_basic           “Administrator’s Area”;
    auth_basic_user_file /etc/apache2/.htpasswd; 
}

HTTP Basic Authentication.png



版权声明:本文为u010674101原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。