This page is about Caddy 1 and will go away soon because Caddy 2 is now available. Click here for Caddy 2.

User Guide

http.webdav
Plugin

WebDAV capabilities with support for path restriction rules and users.

Full documentation

Examples

Syntax
webdav [url] { scope path modify [true|false] allow path allow_r regex block path block_r regex }

All the options are optional. + url is the place where you can access the WebDAV interface. Defaults to /. + scope is an absolute or relative (to the current working directory of Caddy) path that indicates the scope of the WebDAV. Defaults to .. + modify indicates if the user has permission to edit/modify the files. Defaults to true. + allow and block are used to allow or deny access to specific files or directories using their relative path to the scope. You can use the magic word dotfiles to allow or deny the access to every file starting by a dot. + allow_r and block_r and variations of the previous options but you are able to use regular expressions with them. It is highly recommended to use this directive alongside with basicauth to protect the WebDAV interface. webdav { # You set the global configurations here and # all the users will inherit them. user1: # Here you can set specific settings for the 'user1'. # They will override the global ones for this specific user. }

Basic
webdav

WebDAV on / for the current working directory.

Custom Scope
webdav /admin { scope / }

WebDAV on /admin for the whole file system.

Denying Rules
webdav { scope / block /etc block /dev }

WebDAV on / for the whole file system, without access to /etc and /dev directories.

User Permissions
basicauth / sam pass webdav { scope / sam: block /var/www }

WebDAV on / for the whole file system. The user sam can't access /var/www but the others can.

Related Links
Documentation

Access the full documentation for this plugin off-site:

Docs
Plugin Help

Get help from the maintainers of the http.webdav plugin:

Support
Plugin Website

Visit http.webdav's website for more information:

Website
Plugin Author: Henrique Dias
Last Updated: 9 Jun 2019, 12:37 PM
This plugin is independent of the Caddy project and is not endorsed or maintained by Caddy developers. Use at your own risk. Do not file issues for this plugin on Caddy's bug tracker.