Apache/WebDAV: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
 
Line 28: Line 28:
* [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>

References