系统相关
首页 > 系统相关> > nginx 配置文件服务器

nginx 配置文件服务器

作者:互联网

 

 

server {
    listen       80;
    server_name  localhost;

    autoindex on;
    autoindex_exact_size off;
    autoindex_localtime on;
    charset utf-8;

   --这是linux
    location / {

    root   /mnt/d/TDDownload;
    # C、D盘都在 /mnt 目录下,这里是挂载的 D 盘 TDDownload 目录,

    }
    --这是windows
    location /share{                             #在server下新建一个location
            alias D:\share;             
            autoindex on;                      #开启自动索引功能,将共享目录下的文件整合成页面
        }
    
}

  

标签:TDDownload,配置文件,autoindex,share,mnt,server,nginx,location,服务器
来源: https://www.cnblogs.com/wdw31210/p/15396113.html