<?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: Serving websites from svn checkout considered harmful</title>
	<atom:link href="http://scottbarnham.com/blog/2008/04/22/serving-websites-from-svn-checkout-considered-harmful/feed/" rel="self" type="application/rss+xml" />
	<link>http://scottbarnham.com/blog/2008/04/22/serving-websites-from-svn-checkout-considered-harmful/</link>
	<description>Code and comments on web development, Django, Python and things (un)related.</description>
	<lastBuildDate>Tue, 13 Jul 2010 16:31:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alex</title>
		<link>http://scottbarnham.com/blog/2008/04/22/serving-websites-from-svn-checkout-considered-harmful/comment-page-1/#comment-765</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 18 Jan 2010 00:07:12 +0000</pubDate>
		<guid isPermaLink="false">http://scottbarnham.com/blog/2008/04/22/serving-websites-from-svn-checkout-considered-harmful/#comment-765</guid>
		<description>stupid russian idiots published this news 1 year after you...))

http://habrahabr.ru/blogs/infosecurity/70330/</description>
		<content:encoded><![CDATA[<p>stupid russian idiots published this news 1 year after you&#8230;))</p>
<p><a href="http://habrahabr.ru/blogs/infosecurity/70330/" rel="nofollow">http://habrahabr.ru/blogs/infosecurity/70330/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rtw</title>
		<link>http://scottbarnham.com/blog/2008/04/22/serving-websites-from-svn-checkout-considered-harmful/comment-page-1/#comment-644</link>
		<dc:creator>rtw</dc:creator>
		<pubDate>Thu, 12 Mar 2009 19:27:42 +0000</pubDate>
		<guid isPermaLink="false">http://scottbarnham.com/blog/2008/04/22/serving-websites-from-svn-checkout-considered-harmful/#comment-644</guid>
		<description>i&#039;ve been messing around with my lighttpd regex patterns trying to solve this issue - 

&lt;code&gt;
$HTTP[&quot;url&quot;] =~ &quot;.*\.svn.*&quot; {
  url.access-deny = (&quot;&quot;)
}
&lt;/code&gt;

still allows me to access/download the /.svn/entries and /.svn/format files, but protects the directory.  Anyone else have similar results?

p.s. - i&#039;m actually planning on using:

&lt;code&gt;
url.redirect-code = 404
&lt;/code&gt;

instead of
&lt;code&gt;
#url.access-deny = (&quot;&quot;)
&lt;/code&gt;

I believe this is a better strategy - that way you&#039;re denying that the files are even there.  The equivalent in Apache is:

&lt;code&gt;
RedirectMatch 404 /\\.svn(/&#124;$)
&lt;/code&gt;

(the apache directive protects the entries and format files)

Any help is appreciated!!</description>
		<content:encoded><![CDATA[<p>i&#8217;ve been messing around with my lighttpd regex patterns trying to solve this issue &#8211; </p>
<p><code><br />
$HTTP["url"] =~ ".*\.svn.*" {<br />
  url.access-deny = ("")<br />
}<br />
</code></p>
<p>still allows me to access/download the /.svn/entries and /.svn/format files, but protects the directory.  Anyone else have similar results?</p>
<p>p.s. &#8211; i&#8217;m actually planning on using:</p>
<p><code><br />
url.redirect-code = 404<br />
</code></p>
<p>instead of<br />
<code><br />
#url.access-deny = ("")<br />
</code></p>
<p>I believe this is a better strategy &#8211; that way you&#8217;re denying that the files are even there.  The equivalent in Apache is:</p>
<p><code><br />
RedirectMatch 404 /\\.svn(/|$)<br />
</code></p>
<p>(the apache directive protects the entries and format files)</p>
<p>Any help is appreciated!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://scottbarnham.com/blog/2008/04/22/serving-websites-from-svn-checkout-considered-harmful/comment-page-1/#comment-602</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 19 Dec 2008 01:27:28 +0000</pubDate>
		<guid isPermaLink="false">http://scottbarnham.com/blog/2008/04/22/serving-websites-from-svn-checkout-considered-harmful/#comment-602</guid>
		<description>I use darcs rather than svn for my webpage, and noticed the darcs equivalent to this a few months ago.  It&#039;s a problem with most VC systems.</description>
		<content:encoded><![CDATA[<p>I use darcs rather than svn for my webpage, and noticed the darcs equivalent to this a few months ago.  It&#8217;s a problem with most VC systems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan</title>
		<link>http://scottbarnham.com/blog/2008/04/22/serving-websites-from-svn-checkout-considered-harmful/comment-page-1/#comment-573</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Sun, 26 Oct 2008 14:09:28 +0000</pubDate>
		<guid isPermaLink="false">http://scottbarnham.com/blog/2008/04/22/serving-websites-from-svn-checkout-considered-harmful/#comment-573</guid>
		<description>Wow! Thanks for opening my eyes on this.

I&#039;m so surprised that this isn&#039;t a well-known issue for web developers using subversion. 

I just sent your article out to a bunch of colleagues. 
Thanks again,
Jonathan</description>
		<content:encoded><![CDATA[<p>Wow! Thanks for opening my eyes on this.</p>
<p>I&#8217;m so surprised that this isn&#8217;t a well-known issue for web developers using subversion. </p>
<p>I just sent your article out to a bunch of colleagues.<br />
Thanks again,<br />
Jonathan</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.203 seconds -->
