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