Rclone:
#25005的HTTP端口,用户和密码1234
rclone serve webdav --addr :25005 odrive: --user 1234 --pass 1234
rclone mount odrive: /mnt/odrive --umask 0000 --default-permissions --allow-non-empty --allow-other --vfs-cache-mode writes --buffer-size 32M --dir-cache-time 12h >/dev/null 2>&1 &
Caddy :
#安装带webdav的Caddy(在usr local bin)
wget -qO- https://getcaddy.com | bash -s personal http.webdav
/usr/local/bin/ 新建Caddyfile配置文件
:81 {
root /mnt/odrive #需要显示的目录,绝对路径
gzip
browse
}
# webdav访问端口
:25005 {
basicauth / 123 123
webdav / {
scope /mnt/odrive #需要显示的目录,绝对路径
modify false #修改为true表示有权编辑/修改文件
}
#临时启动
caddy -conf /usr/local/bin/Caddyfile
没有评论:
发表评论