配置文件 Link to heading

NAS创建文件夹
/home/nginx 放网站文件
/home/nginx/file 共享的文件放这里
/home/config/nginx/default.conf, 内容如下:

#/etc/nginx/conf.d/default.conf
server {
  listen *:8119;
  root /nginx;
  location / {
    index index.html index.php;
  }
  location /file/ {
    autoindex on;
  }
}

docker映射 Link to heading

创建docker, 映射目录
/home/config/nginx/default.conf => /etc/nginx/conf.d/default.conf
/home/nginx/ => /nginx/

访问 Link to heading

访问 http://192.168.0.x:8119/file就可以直接下载文件了