有时侯部分网站不想被别人看到,需要进行加密访问,此时对nginx进行简单配置即可

nginx域名配置文件修改

location / {
    root   html;
    index  index.html index.htm index index.jpg;
    auth_basic 'Restricted';            # 认证名称,随意填写
    auth_basic_user_file /htpasswd/passwd.db;      # 认证的密码文件,需要生产。
  }

通过htpasswd命令生成用户名及对应密码数据库文件

htpasswd -c /htpasswd/passwd.db test
chmod 777 /htpasswd/passwd.db test
/usr/local/nginx/sbin  -s relaod

嘉美伯爵
56 声望7 粉丝

健身和旅行必须有一个在路上