openmediavault(32位最终版)_3.0.36-i386
支持n270等cpu
在/etc/nginx/conf.d/webdav.conf下插入以下内容
server {
listen 81;
server_name webdav;
error_log /var/log/nginx/webdav.error.log error;
access_log /var/log/nginx/webdav.access.log combined;
charset utf-8;
dav_methods PUT DELETE MKCOL COPY MOVE;
dav_ext_methods PROPFIND OPTIONS;
create_full_put_path on;
dav_access user:rw group:r all:r;
autoindex on;
#关闭详细计数,默认以B为单位,关闭后以M或者G为单位
autoindex_exact_size off;
#设定上传文件大小
client_max_body_size 20480M;