Windows下用canddy快速搭建webdav
一、 官网下载canddy
去官网下载canddy,插件选择http.webdav
即可。
二、 编辑Caddyfile
新建文本文件Caddyfile:
192.168.1.100:8080 {
basicauth / username password
webdav / {
scope D:/googlephoto #需要显示的目录,绝对路径
modify true #修改为true表示有权编辑/修改文件
}
最后启动caddy,访问192.168.1.100:8080
即可。