This page (revision-14) was last changed on 27-Feb-2018 08:49 by Dieter Käppel

This page was created on 20-Apr-2012 10:16 by Dieter Käppel

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
14 27-Feb-2018 08:49 3 KB Dieter Käppel to previous
13 27-Feb-2018 08:49 3 KB Dieter Käppel to previous | to last
12 19-Jun-2014 22:07 3 KB Dieter Käppel to previous | to last
11 19-Oct-2013 15:19 2 KB Dieter Käppel to previous | to last
10 16-Aug-2013 16:51 2 KB Dieter Käppel to previous | to last
9 22-Feb-2013 19:05 2 KB Dieter Käppel to previous | to last
8 02-Feb-2013 14:45 2 KB Dieter Käppel to previous | to last
7 20-May-2012 13:14 2 KB Dieter Käppel to previous | to last
6 10-May-2012 05:49 1 KB Dieter Käppel to previous | to last
5 08-May-2012 21:53 1 KB Dieter Käppel to previous | to last
4 20-Apr-2012 10:19 1 KB Dieter Käppel to previous | to last
3 20-Apr-2012 10:17 1 KB Dieter Käppel to previous | to last Apache ==> Apache HTTPD
2 20-Apr-2012 10:17 1 KB Dieter Käppel to previous | to last
1 20-Apr-2012 10:16 234 bytes Dieter Käppel to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 3 added 2 lines
Die Informationen beziehen sich auf Apache 2.2.
At line 10 added 40 lines
!WebDAV
Der Apache kann auch als WebDAV-Server konfiguriert werden. Dies kann sogar von Windows 7 (eventuell auch frühere Versionen) als Netzwerk-Laufwerk konfiguriert werden.
Dazu wird in der httpd.conf folgende Konfiguration eingetragen:
{{{
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule dav_lock_module modules/mod_dav_lock.so
DavLockDB "C:/Java/dav/DavLock"
Alias /dav "C:/Java/dav/data"
<Directory "C:/Java/dav/data">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
<Location /dav>
Dav On
AuthType Digest
AuthName WebDAV
AuthDigestDomain /dav/ http://localhost/dav/
AuthDigestProvider file
AuthUserFile "C:/Java/dav/user.passwd"
<LimitExcept OPTIONS>
Require valid-user
</LimitExcept>
</Location>
}}}
Die Verzeichnisse C:/Java/dav und C:/Java/data werden per mkdir angelegt. Die Datei user.passwd wird mit touch angelegt, Benutzer werden eingetragen mit:
{{{
htdigest C:\Java\dav\user.passwd WebDAV <username>
}}}