<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Howto enable WebDAV in Apache</title>
	<atom:link href="http://www.dikant.de/2007/10/28/howto-enable-webdav-in-apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dikant.de/2007/10/28/howto-enable-webdav-in-apache/</link>
	<description>Personal blog of Peter Dikant</description>
	<lastBuildDate>Thu, 11 Feb 2010 18:14:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: "Logbuch des Captains´ - Rainbowarrior.at</title>
		<link>http://www.dikant.de/2007/10/28/howto-enable-webdav-in-apache/comment-page-1/#comment-8768</link>
		<dc:creator>"Logbuch des Captains´ - Rainbowarrior.at</dc:creator>
		<pubDate>Thu, 12 Nov 2009 11:06:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.dikant.de/2007/10/28/howto-enable-webdav-in-apache/#comment-8768</guid>
		<description>&lt;strong&gt;things needet to do...&lt;/strong&gt;

need to enable foxmarks with own server per webdav and provide download for addon
http://wiki.foxmarks.com/wiki/Foxmarks:_Frequently_Asked_Questions#Using_Other_Servers

install webdav
http://blog.keyphrene.com/keyphrene/index.php/2006/09/16/9-how-...</description>
		<content:encoded><![CDATA[<p><strong>things needet to do&#8230;</strong></p>
<p>need to enable foxmarks with own server per webdav and provide download for addon<br />
<a href="http://wiki.foxmarks.com/wiki/Foxmarks:_Frequently_Asked_Questions#Using_Other_Servers" rel="nofollow">http://wiki.foxmarks.com/wiki/Foxmarks:_Frequently_Asked_Questions#Using_Other_Servers</a></p>
<p>install webdav<br />
<a href="http://blog.keyphrene.com/keyphrene/index.php/2006/09/16/9-how-.." rel="nofollow">http://blog.keyphrene.com/keyphrene/index.php/2006/09/16/9-how-..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Achim</title>
		<link>http://www.dikant.de/2007/10/28/howto-enable-webdav-in-apache/comment-page-1/#comment-129</link>
		<dc:creator>Achim</dc:creator>
		<pubDate>Tue, 30 Oct 2007 12:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dikant.de/2007/10/28/howto-enable-webdav-in-apache/#comment-129</guid>
		<description>The last sentence in my comment should read:

Actually, I used a &quot;Location&quot; tag instead of &quot;Directory&quot;, but I don’t think that should matter.

:-)</description>
		<content:encoded><![CDATA[<p>The last sentence in my comment should read:</p>
<p>Actually, I used a &#8220;Location&#8221; tag instead of &#8220;Directory&#8221;, but I don’t think that should matter.</p>
<p> <img src='http://www.dikant.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.dikant.de/2007/10/28/howto-enable-webdav-in-apache/comment-page-1/#comment-128</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 30 Oct 2007 11:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.dikant.de/2007/10/28/howto-enable-webdav-in-apache/#comment-128</guid>
		<description>Hi Achim, 

Very good tip!

Thanks a lot :)</description>
		<content:encoded><![CDATA[<p>Hi Achim, </p>
<p>Very good tip!</p>
<p>Thanks a lot <img src='http://www.dikant.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Achim</title>
		<link>http://www.dikant.de/2007/10/28/howto-enable-webdav-in-apache/comment-page-1/#comment-127</link>
		<dc:creator>Achim</dc:creator>
		<pubDate>Tue, 30 Oct 2007 11:44:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.dikant.de/2007/10/28/howto-enable-webdav-in-apache/#comment-127</guid>
		<description>Hi Peter,

I did something similar some time ago. However, instead of using a login/password for authentication, I decided to go with SSL client certificates. For this to work, the VirtualHost section needs to be expanded / changed like this:


&lt;pre lang=&quot;apache&quot;&gt;
&lt;VirtualHost ###.###.###.###:443&gt;
        ...
        SSLVerifyClient optional
        SSLVerifyDepth 2
        SSLCACertificateFile /path/to/CAcert.pem
        ...

        &lt;Directory ....&gt;
                DAV On
                SSLVerifyClient require
                SSLVerifyDepth 2
                SSLOptions      +FakeBasicAuth +StdEnvVars
                SSLRequireSSL
                SSLRequire %{SSL_CLIENT_S_DN_O} eq &quot;organization&quot;
        &lt;/Directory&gt;
&lt;/VirtualHost&gt;
&lt;/pre&gt;

/path/to/CAcert.pem is the certificate of the CA you used to create the client certificates, &quot;organization&quot; is the organization name you used for generating your client certificates.

Actually, I used a  tag instead of , but I don&#039;t think that should matter.

Cheers,
Achim</description>
		<content:encoded><![CDATA[<p>Hi Peter,</p>
<p>I did something similar some time ago. However, instead of using a login/password for authentication, I decided to go with SSL client certificates. For this to work, the VirtualHost section needs to be expanded / changed like this:</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;">&lt;<span style="color: #000000; font-weight:bold;">VirtualHost</span> <span style="color: #adadad; font-style: italic;">###.###.###.###:443&gt;</span>
        ...
        SSLVerifyClient optional
        SSLVerifyDepth <span style="color: #ff0000;">2</span>
        SSLCACertificateFile /path/to/CAcert.pem
        ...
&nbsp;
        &lt;<span style="color: #000000; font-weight:bold;">Directory</span> ....&gt;
                DAV <span style="color: #0000ff;">On</span>
                SSLVerifyClient <span style="color: #00007f;">require</span>
                SSLVerifyDepth <span style="color: #ff0000;">2</span>
                SSLOptions      +FakeBasicAuth +StdEnvVars
                SSLRequireSSL
                SSLRequire %{SSL_CLIENT_S_DN_O} eq <span style="color: #7f007f;">&quot;organization&quot;</span>
        &lt;/<span style="color: #000000; font-weight:bold;">Directory</span>&gt;
&lt;/<span style="color: #000000; font-weight:bold;">VirtualHost</span>&gt;</pre></div></div>

<p>/path/to/CAcert.pem is the certificate of the CA you used to create the client certificates, &#8220;organization&#8221; is the organization name you used for generating your client certificates.</p>
<p>Actually, I used a  tag instead of , but I don&#8217;t think that should matter.</p>
<p>Cheers,<br />
Achim</p>
]]></content:encoded>
	</item>
</channel>
</rss>
