<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Information Centre &#187; webdav</title>
	<atom:link href="http://my.center-of.info/tag/webdav/feed/" rel="self" type="application/rss+xml" />
	<link>http://my.center-of.info</link>
	<description>“Wenn etwas schon da war, wie kann man es dann patentieren?” D.E.Knuth, 2002</description>
	<lastBuildDate>Mon, 28 Sep 2009 23:04:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WebDav ganz simpel</title>
		<link>http://my.center-of.info/2008/10/28/webdav-ganz-simpel/</link>
		<comments>http://my.center-of.info/2008/10/28/webdav-ganz-simpel/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 18:47:55 +0000</pubDate>
		<dc:creator>Haf</dc:creator>
				<category><![CDATA[DevEnv]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[webdav]]></category>

		<guid isPermaLink="false">http://blog.had493.schokokeks.org/?p=29</guid>
		<description><![CDATA[Ja, WebDav ist leichter zu installieren als man denkt. Wobei installieren hier zu hoch gegriffen ist. Hat man schon ein Apache installiert muss man nur noch ein paar Konfigurationen durchführen und schon funktioniert es &#8211; simple.

In Apache benötigt man die Module (siehe httpd.conf):

LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so

Nun könnte man z.B. in einer &#60;Location&#62; oder &#60;VirtualHost&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Ja, WebDav ist leichter zu installieren als man denkt. Wobei installieren hier zu hoch gegriffen ist. Hat man schon ein Apache installiert muss man nur noch ein paar Konfigurationen durchführen und schon funktioniert es &#8211; simple.</p>
<p><span id="more-29"></span></p>
<p>In Apache benötigt man die Module (siehe httpd.conf):</p>
<pre class="brush: php">
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
</pre>
<p>Nun könnte man z.B. in einer <a title="Apache2.2: Location-Direktive" href="http://httpd.apache.org/docs/2.2/mod/core.html#location">&lt;Location&gt;</a> oder <a title="Apache2.2: VirtualHost-Direktive" href="http://httpd.apache.org/docs/2.2/mod/core.html#virtualhost">&lt;VirtualHost&gt;</a> folgendes definieren:</p>
<pre class="brush: php">
# WebDav Modul aktivieren
Dav On

# auth
AuthType Digest
AuthName &quot;WebDav Area&quot;
AuthDigestDomain http://webdav.example/
AuthDigestFile /web/auth/.htdigest
Require group webdavGroup
</pre>
<p>. Simple!</p>
<p>Links:</p>
<p>[1] <a title="WebDav" href="http://www.webdav.org/">WebDav.org</a><br />
[2] <a title="Apache2.2: Modul mod_dav" href="http://httpd.apache.org/docs/2.2/mod/mod_dav.html">Apache Module mod_dav</a></p>
]]></content:encoded>
			<wfw:commentRss>http://my.center-of.info/2008/10/28/webdav-ganz-simpel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
