webdav-js
Version:
WebDAV functionality intended for use as a bookmarklet or to make a simple webserver an interactive WebDAV environment.
29 lines (22 loc) • 653 B
Plain Text
<VirtualHost *:80>
ServerName webdav.server.com
DocumentRoot /var/www/html/
# assuming webdav-js is checked out to /var/www/webdav-js
Alias /webdav-js /var/www/webdav-js
<Location />
DirectoryIndex disabled
IndexOptions +Charset=UTF-8
DAV on
AllowOverride None
Options +Indexes -ExecCGI
HeaderName /webdav-js/examples/apache-directory-list-local/header.html
SetHandler None
</Location>
# Add security
<Directory /var/www/webdav-js>
Satisfy all
<LimitExcept GET>
Deny from all
</LimitExcept>
</Directory>
</VirtualHost>