How to WebDAV on Ubuntu
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