美文网首页
nginx作为文件服务器

nginx作为文件服务器

作者: lmem | 来源:发表于2017-03-14 14:19 被阅读185次

    http://www.linuxidc.com/Linux/2014-07/104499.htm
    使用Nginx在局域网内和同事共享文件的好方法。

    1 安装nginx

    sudo apt-get install nginx
    2 创建conf文件

    sudo gedit /etc/nginx/conf.d/file_server.conf
    修改conf文件如下:

    server {
    listen 80;
    server_name 10.1.2.3; # 自己PC的ip或者服务器的域名
    charset utf-8; # 避免中文乱码
    root /home/xx/share;
    location / {
    autoindex on; # 索引
    autoindex_exact_size on; # 显示文件大小
    autoindex_localtime on; # 显示文件时间
    }
    }
    3 使配置生效

    sudo rm /etc/nginx/sites-enabled/default
    sudo service nginx reload
    4 访问

    浏览器里直接输入 http://10.1.2.3

    相关文章

      网友评论

          本文标题:nginx作为文件服务器

          本文链接:https://www.haomeiwen.com/subject/pufhnttx.html