How to WebDAV on Ubuntu
- Chris Speed 
- Jul 1, 2023
- 1 min read
Create Directory Structure for WebDAV
mkdir /var/www/webdav
chown -R www-data:www-data /var/www/webdavCreate an Apache Virtual Host for WebDAV
nano /etc/apache2/sites-available/000-default.confEnable WebDAV Authentication (password) reset
htdigest /etc/apache2/webdav.password webdav plexStart service and check the status of the Apache with the following command:
systemctl start apache2
systemctl status apache2Apache version using the following command:
apache2ctl  -vReference:

Comments