<?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>code.commongroove.com &#187; Apache</title>
	<atom:link href="http://code.commongroove.com/category/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://code.commongroove.com</link>
	<description>C#, T-SQL, and general IT mojo</description>
	<lastBuildDate>Thu, 26 Jan 2012 03:00:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Apache/Subversion: SSL negotiation failed: SSL error: parse tlsext</title>
		<link>http://code.commongroove.com/2009/09/25/apachesubversion-ssl-negotiation-failed-ssl-error-parse-tlsext/</link>
		<comments>http://code.commongroove.com/2009/09/25/apachesubversion-ssl-negotiation-failed-ssl-error-parse-tlsext/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 23:36:23 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://code.commongroove.com/archive/2009/09/25/apachesubversion-ssl-negotiation-failed-ssl-error-parse-tlsext.aspx</guid>
		<description><![CDATA[If you are getting an error like the following when you do a large import or commit to Subversion over SSL: Error: MKCOL of   &#8216;/repository/!svn/wrk/{GUID}/project/trunk/folder/file.ext&#8217; SSL negotiation failed: SSL error: parse tlsext (https://mysite.com) try modifying your Apache server&#8217;s httpd.conf, changing &#8230; <a href="http://code.commongroove.com/2009/09/25/apachesubversion-ssl-negotiation-failed-ssl-error-parse-tlsext/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><font face="">If you are getting an error like the following when you do a<strong> large import or commit</strong> to Subversion over SSL:</font></p>
<p><font face=""><font face=""><font face="Courier New">Error: MKCOL of   <br />
&#8216;/repository/!svn/wrk/{GUID}/project/trunk/folder/file.ext&#8217;<br />
SSL negotiation failed: <strong>SSL error: parse tlsext</strong> (https://mysite.com)</font> </font></font></p>
<p><font face=""><br />
try modifying your Apache server&#8217;s<strong> httpd.conf</strong>, changing the <strong>SSLProtocol</strong> line like this:</font></p>
<p><font face=""><font face=""><br />
#SSLProtocol -ALL +SSLv3 +TLSv1<br />
<strong>SSLProtocol -ALL +SSLv3</strong> </font></font></p>
<p>Of course this will only work if you don&#8217;t need TLSv1 <img src='http://www.commongroove.com/code/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>(I ran into this while running Subversion 1.6.5 over Apache 2.2.13 on Windows 2003 Server)</p>
<p> </p>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://code.commongroove.com/2009/09/25/apachesubversion-ssl-negotiation-failed-ssl-error-parse-tlsext/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Binding Apache and IIS both to Port 80 on Different IPs / Same NIC</title>
		<link>http://code.commongroove.com/2009/09/25/binding-apache-and-iis-both-to-port-80-on-different/</link>
		<comments>http://code.commongroove.com/2009/09/25/binding-apache-and-iis-both-to-port-80-on-different/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 03:39:30 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://code.commongroove.com/archive/2009/09/24/binding-apache-and-iis-both-to-port-80-on-different.aspx</guid>
		<description><![CDATA[If you need to run IIS 6.0 and Apache 2.2.* side-by-side on the same Windows server machine, you most likely are trying to bind apache to one IP address and IIS to another.  If you have multiple IPs bound to &#8230; <a href="http://code.commongroove.com/2009/09/25/binding-apache-and-iis-both-to-port-80-on-different/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you need to run IIS 6.0 and Apache 2.2.* side-by-side on the same Windows server machine, you most likely are trying to bind apache to one IP address and IIS to another.  If you have multiple IPs bound to the same NIC, this will only work if you do some tweaking to IIS&#8217;s <strong>metabase</strong> via <strong>httpcfg.exe</strong>.  </p>
<p>The httpcfg utility is found on the installation CD in the Suppot/Tools directory in the Support.cab file (you can use WinRAR or the like to extract it).</p>
<p>Once you have httpcfg on your system, you force IIS to bind only to specified IP addresses with a command like:</p>
<p><font face="Courier New">httpcfg set iplisten -i xxx.xxx.x.x</font></p>
<p>Here&#8217;s the KB that shows in detail you how to get it done:</p>
<p><font face=""><a href="http://support.microsoft.com/kb/813368/EN-US/">http://support.microsoft.com/kb/813368/EN-US/</a></font></p>
<p>Hope this helps! </p>
]]></content:encoded>
			<wfw:commentRss>http://code.commongroove.com/2009/09/25/binding-apache-and-iis-both-to-port-80-on-different/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

