User Tools

Site Tools


docs:tips_n_tricks:apache.html

This is an old revision of the document!


Apache

Configure WebDAV

It's as simple as this (excerpt from httpd.conf):

#
LoadModule dav_module /usr/lib/apache2/modules/mod_dav.so
LoadModule dav_fs_module /usr/lib/apache2/modules/mod_dav_fs.so

Alias /webdav /var/www/webdav

<Location /webdav>
DAV On
AuthType Basic
AuthName MyWebDAV
AuthUserFile /etc/apache/passwd.webdav
Require valid-user
</Location>
#

Manage accounts

Create initial account:

htpasswd -c /etc/apache/passwd.webdav myuser

(You will be prompted for a password)
add accounts or change passwords:

htpasswd /etc/apache/passwd.webdav myuser2

(You will be prompted for a password)
Remove an account:

htpasswd -D /etc/apache/passwd.webdav olduser
docs/tips_n_tricks/apache.html.1298365784.txt.gz · Last modified: 22.02.2011 10:09 CET by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki