目的
- 宝塔+weddav
参考
实现
确认nginx 编译带了 http_dav_module 模块
nginx -V | grep -i dav
建新站,并开启目录用户名+密码
配置文件
location / { root /www/wwwroot/davsite.your.domain; # 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; }