Email address obfuscation in effect -- please
click here to turn it off.
[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
Cutts III, James H. wrote:
Does anyone know a good basic step by step how-to for setting up,
testing and using WebDAV on Apache. I want to be able to publish my
ICAL file for my Thunderbird/Lightning – Sunbird calendar apps. It
would be nice to be able use one of the several Apache servers that I
have control of as a source of my personal calendars.
There's very little to it. Assuming you are using apache2 and have the
DAV module compiled.
You need to lead the DAV module in httpd.conf:
LoadModule dav_module modules/mod_dav.so
Then in the main section of your httpd.conf file you also need to set
the lcoation of your dav lock file:
DAVLockDB /tmp/DAVLock
DAVMinTimeout 600
Now add a location for Dav to operate:
<Location /webdav/>
DAV On
</Location>
Now you have a folder that anyone can read or write to - you're almost
certainly going to want to add authentication requirements to that location.
Russell.
_______________________________________________
members mailing list
EMAIL:PROTECTED
http://mlug.missouri.edu/mailman/listinfo/members