码迷,mamicode.com
首页 > 其他好文 > 详细

用nginx简单搭建文件服务器

时间:2018-05-04 11:49:54      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:download   auth   nload   system   roo   basic   yum   dex   文件服务器   

    步骤一:安装httpd相关工具

      yum -y install httpd-tools
    步骤二:生成密码文件

      htpasswd -c /usr/local/nginx/conf/htpasswd username 根据提示填写密码
    步骤三:修改nginx配置 里添加:
            server {
                listen 80;
                root /data/wwwroot/download;
                server_name xxxxx.xxxx.xxxxx;
                location ~ / {
                    auth_basic "User basic check";
                    auth_basic_user_file "conf/htpasswd";
                    autoindex on;
                }
    
    }
    步骤四:重启nginx服务

     systemctl restart nginx 或者 nginx -s reload

用nginx简单搭建文件服务器

标签:download   auth   nload   system   roo   basic   yum   dex   文件服务器   

原文地址:https://www.cnblogs.com/sblack/p/8989371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!