nginx密码文件服务器

# #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/ 必须已存在

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值