欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

nginx构建文件服务器

程序员文章站 2022-03-11 21:33:31
...
使用nginx构建文件服务器
1、下载nginx。官网下载地址:http://nginx.org/en/download.html
2、下载后解压,进入\nginx-1.9.15\conf目录,修改nginx.conf文件。在sever标签下面加入文件存储路径:
location /uploads {
            alias  D:/winxjjx/uploads;
            allow all;
            autoindex on;
        }


3、启动nginx。点nginx.exe
4、浏览器浏览文件地址:http://localhost:8185/uploads/

nginx构建文件服务器
            
    
    博客分类: 开发、部署环境  
  • nginx构建文件服务器
            
    
    博客分类: 开发、部署环境  
  • 大小: 26 KB