Apache/WebDAV: Difference between revisions
Jump to navigation
Jump to search
(→WebDAV) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 24: | Line 24: | ||
==References== | ==References== | ||
* [https://www.digitalocean.com/community/tutorials/how-to-configure-webdav-access-with-apache-on-ubuntu-20-04 Configure WebDAV with Apache on Ubuntu 20.04] | |||
* [https://www.digitalocean.com/community/tutorials/how-to-configure-webdav-access-with-apache-on-ubuntu-18-04 Configure WebDAV with Apache on Ubuntu 18.04] | |||
* [https://www.digitalocean.com/community/tutorials/how-to-configure-webdav-access-with-apache-on-ubuntu-14-04 Configure WebDAV with Apache on Ubuntu 14.04] | * [https://www.digitalocean.com/community/tutorials/how-to-configure-webdav-access-with-apache-on-ubuntu-14-04 Configure WebDAV with Apache on Ubuntu 14.04] | ||
* [https://www.digitalocean.com/community/tutorials/how-to-configure-webdav-access-with-apache-on-ubuntu-12-04 Configure WebDAV with Apache on Ubuntu 12.04] | * [https://www.digitalocean.com/community/tutorials/how-to-configure-webdav-access-with-apache-on-ubuntu-12-04 Configure WebDAV with Apache on Ubuntu 12.04] | ||
* [[Apache Basic Authentication]] |
Latest revision as of 06:19, 18 September 2021
Install
apachectl -M
apache2ctl -M
a2enmod dav
a2enmod dav_fs
WebDAV
nano /etc/apache2/sites-enabled/000-default.conf
Alias /webdav /var/www/wdav
<Directory /var/www/wdav>
DAV On
AuthType Digest
AuthName "webdav"
AuthUserFile /etc/apache2/users.password
Require valid-user
</Directory>