<?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: SVN and WebSVN over SSL with self-signed certificates</title>
	<atom:link href="http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/</link>
	<description>Observations in a fast changing World</description>
	<lastBuildDate>Fri, 03 Feb 2012 07:47:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Rob</title>
		<link>http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/comment-page-1/#comment-3425</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Thu, 10 Mar 2011 15:38:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/#comment-3425</guid>
		<description>Awesome tutorial, there is also a good tutorial on websvn setup here:

http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn

and svn installation here:

http://www.duchnik.com/tutorials/vc/installing-and-configuring-svn-on-centos</description>
		<content:encoded><![CDATA[<p>Awesome tutorial, there is also a good tutorial on websvn setup here:</p>
<p><a href="http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn" rel="nofollow">http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn</a></p>
<p>and svn installation here:</p>
<p><a href="http://www.duchnik.com/tutorials/vc/installing-and-configuring-svn-on-centos" rel="nofollow">http://www.duchnik.com/tutorials/vc/installing-and-configuring-svn-on-centos</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/comment-page-1/#comment-3134</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Mon, 20 Sep 2010 21:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/#comment-3134</guid>
		<description>Hi Manuel. I don&#039;t know as I don&#039;t use CVS. Actually I don&#039;t know anyone who uses CVS any more. Subversion is very popular and Git is probably even more popular these days. If you don&#039;t have a strong reason for needing to use CVS may I suggest you have a look at Subversion and Git?  You can use a (free) hosted service for your code repositories. Github (www.github.com) is a very good one if you want to use git and Berlios (http://developer.berlios.de/) is a good one if you want to use Subversion. Good luck!</description>
		<content:encoded><![CDATA[<p>Hi Manuel. I don&#8217;t know as I don&#8217;t use CVS. Actually I don&#8217;t know anyone who uses CVS any more. Subversion is very popular and Git is probably even more popular these days. If you don&#8217;t have a strong reason for needing to use CVS may I suggest you have a look at Subversion and Git?  You can use a (free) hosted service for your code repositories. Github (www.github.com) is a very good one if you want to use git and Berlios (<a href="http://developer.berlios.de/" rel="nofollow">http://developer.berlios.de/</a>) is a good one if you want to use Subversion. Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manuel</title>
		<link>http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/comment-page-1/#comment-3133</link>
		<dc:creator>manuel</dc:creator>
		<pubDate>Mon, 20 Sep 2010 21:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/#comment-3133</guid>
		<description>Hello,

How can i do it with CVS ??

Regards</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>How can i do it with CVS ??</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anders C. Madsen</title>
		<link>http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/comment-page-1/#comment-2916</link>
		<dc:creator>Anders C. Madsen</dc:creator>
		<pubDate>Mon, 25 May 2009 12:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/#comment-2916</guid>
		<description>Just a note to those following this tutorial: 

A self-signed CA will no longer work with Firefox and should be avoided since you cannot add an exception for the untrusted signature (but you can for a certificate created without a CA).

Hence, item 2) in the list above can be condenced into this:

$ openssl genrsa -des3 -out server.key 4096
$ openssl req -x509 -new -days 365 -set_serial 01 -key server.key -out server.crt
$ openssl rsa -in server.key -out server.key.insecure
$ mv server.key server.key.secure
$ mv server.key.insecure server.key

Proceed from step 3) from here.

You will most likely have to accept the new certificate (p)ermanently once per svn client.</description>
		<content:encoded><![CDATA[<p>Just a note to those following this tutorial: </p>
<p>A self-signed CA will no longer work with Firefox and should be avoided since you cannot add an exception for the untrusted signature (but you can for a certificate created without a CA).</p>
<p>Hence, item 2) in the list above can be condenced into this:</p>
<p>$ openssl genrsa -des3 -out server.key 4096<br />
$ openssl req -x509 -new -days 365 -set_serial 01 -key server.key -out server.crt<br />
$ openssl rsa -in server.key -out server.key.insecure<br />
$ mv server.key server.key.secure<br />
$ mv server.key.insecure server.key</p>
<p>Proceed from step 3) from here.</p>
<p>You will most likely have to accept the new certificate (p)ermanently once per svn client.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gauss</title>
		<link>http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/comment-page-1/#comment-2876</link>
		<dc:creator>Gauss</dc:creator>
		<pubDate>Fri, 06 Feb 2009 07:57:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laimbock.com/2007/08/28/svn-and-websvn-over-ssl-with-self-signed-certificates/#comment-2876</guid>
		<description>Hi there. Thanks for such info.

Do you know how to configure WebSVN to authenticate with SSL? It would be great to use the same password file that SVN is already using when accessed from https.</description>
		<content:encoded><![CDATA[<p>Hi there. Thanks for such info.</p>
<p>Do you know how to configure WebSVN to authenticate with SSL? It would be great to use the same password file that SVN is already using when accessed from https.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

