1.下载工具
sudo apt-get install apache2-utils
- 添加用户名密码
htpasswd -c /etc/nginx/.htpasswd username
输入密码,提示如下:
New password:
Re-type new password:
Adding password for user exampleuser
htpaswd的.htpasswd文件格式如下:
login:password
注意:htpasswd需要对nginx运行用户可访问
添加配置到NGINX配置
如:
server {
listen 80;
server_name home.moosrtc.com;
location / {
root /codes/index;
index index.htm index.html;
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/.htpasswd;
}
}
重启
sudo service nginx restart
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。