#命令检查是否有安装 http_dav_module 模块
nginx -V
#在Nginx配置文件新增以下代码
location / {
root /www/www/webdav; # 自行配置WebDAV目录
client_max_body_size 102400M; # 大文件支持
charset utf-8; # 编码
autoindex on;
dav_methods PUT DELETE MKCOL COPY MOVE;
# 下面配置需要 nginx-dav-ext-module 支持
dav_ext_methods PROPFIND OPTIONS LOCK UNLOCK;
create_full_put_path on;
}