这里写目录标题
# #1.配置 nginx.conf
1.1修改 nginx.conf,配置如下,其中修改处 后方都加了注释
server {
listen 8080; # 修改端口为 8080
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /etc; # 文件服务器根目录
autoindex on; # 访问 nginx 服务器使其列出目录结构
autoindex_exact_size off; #展示文件字节大小
autoindex_format html; # 返回索引内容格式
autoindex_localtime on; # 将文件时间改为服务器时间,默认为GMT
auth_basic 'James'; # 认证名称,随意填写
auth_basic_user_file /opt/password/passwd.db; #密码文件路径,后续讲解
}
2. 生成服文件服务器密码
2.1.说明:生成密码需要使用 htpasswd 命令,没有则进行安装
yum -y install httpd-tools
2.2 生成密码文件
htpasswd -c /opt/password/passwd.db test
注意:/opt/password/ 必须已存在