前言
之前webdav一直使用的是 坚果云 ,但是它对请求次数存在限制,某些时候同步会出现问题。所以我决定自己在vps上搭建webdav服务。
vps环境
系统:CentOS 7.3
宝塔:7.1.1
宝塔安装
自行参考:宝塔官网
1.重新安装nginx
选择编译安装
添加自定义模块,依次填入:
http_dav_module
webdev
--with-http_dav_module --add-module=/root/nginx-dav-ext-module
git clone https://github.com/arut/nginx-dav-ext-module.git /root/nginx-dav-ext-module
然后提交安装即可
本操作目的为添加 nginx-dav-ext-module补全nginx的webdav功能
2.搭建webdav
首先新建网站
在配置文件中加入下列内容
location / {
root /www/wwwroot/webdav;
#client_max_body_size 102400M;#大文件支持
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;
}
然后在 网站目录项加入密码保护即可
参考