<?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>stew (@) rtmatheson.com &#187; svn</title>
	<atom:link href="http://rtmatheson.com/tag/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://rtmatheson.com</link>
	<description>My name is Stewart Matheson. I work with code, servers and anything else that makes the web work.  I am also avaiable for hire to help you with any of your projects.</description>
	<lastBuildDate>Mon, 12 Dec 2011 02:02:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Tutorial: Installing Nginx, Apache and SVN</title>
		<link>http://rtmatheson.com/2010/04/installing-nginx-apache-and-svn/</link>
		<comments>http://rtmatheson.com/2010/04/installing-nginx-apache-and-svn/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 14:38:23 +0000</pubDate>
		<dc:creator>Stewart Matheson</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://rtmatheson.com/?p=153</guid>
		<description><![CDATA[In this video I install Nginx Apache and SVN. Download links are here&#8230; http://mirror.lividpenguin.com/pub/apache/httpd/httpd-2.2.15.tar.gz http://subversion.tigris.org/downloads/subversion-1.6.9.tar.gz http://nginx.org/download/nginx-0.7.65.tar.gz Here are the apache configurations I used &#60;IfModule mpm_prefork_module&#62; StartServers 1 MinSpareServers 1 MaxSpareServers 1 MaxClients 10 MaxRequestsPerChild 0 &#60;/IfModule&#62; &#160; &#60;Location /repos&#62; DAV svn SVNPath /usr/local/nginx_svn_test/testrepos SVNAutoversioning on Options Indexes FollowSymLinks Order allow,deny Allow from all &#60;/Location&#62; This [...]]]></description>
			<content:encoded><![CDATA[<p>In this video I install Nginx Apache and SVN.  Download links are here&#8230;</p>
<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=10719817&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=10719817&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object></p>
<p>http://mirror.lividpenguin.com/pub/apache/httpd/httpd-2.2.15.tar.gz</p>
<p>http://subversion.tigris.org/downloads/subversion-1.6.9.tar.gz</p>
<p>http://nginx.org/download/nginx-0.7.65.tar.gz</p>
<p>Here are the apache configurations I used</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;IfModule</span> mpm_prefork_module<span style="color: #000000; font-weight: bold;">&gt;</span></span>
    StartServers          1
    MinSpareServers       1
    MaxSpareServers       1
    MaxClients           10
    MaxRequestsPerChild   0
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/IfModule<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Location</span> /repos<span style="color: #000000; font-weight: bold;">&gt;</span></span>
    DAV svn
    SVNPath /usr/local/nginx_svn_test/testrepos
    SVNAutoversioning on
    Options Indexes FollowSymLinks
    Order allow,deny
    Allow from all
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Location<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>This is the Nginx proxy pass configuration</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">location <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
  proxy_pass http:<span style="color: #000000; font-weight: bold;">//</span>localhost:<span style="color: #000000;">86</span>;
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>The following is the line that configures the apache compile.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--enable-dav</span> <span style="color: #660033;">--enable-dav-fs</span> <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>nginx_svn_test <span style="color: #660033;">--disable-alias</span> <span style="color: #660033;">--disable-userdir</span> <span style="color: #660033;">--disable-actions</span> <span style="color: #660033;">--disable-dir</span> <span style="color: #660033;">--disable-negotiation</span> <span style="color: #660033;">--disable-cgi</span> <span style="color: #660033;">--disable-cgid</span> <span style="color: #660033;">--disable-status</span>      <span style="color: #660033;">--disable-autoindex</span> <span style="color: #660033;">--disable-asis</span> <span style="color: #660033;">--disable-mime</span> <span style="color: #660033;">--disable-version</span> <span style="color: #660033;">--disable-setenvif</span> <span style="color: #660033;">--disable-env</span> <span style="color: #660033;">--disable-log-config</span> <span style="color: #660033;">--disable-include</span> <span style="color: #660033;">--disable-filter</span> <span style="color: #660033;">--disable-auth-basic</span> <span style="color: #660033;">--disable-authz-default</span> <span style="color: #660033;">--disable-authz-user</span> <span style="color: #660033;">--disable-authz-groupfile</span> <span style="color: #660033;">--disable-authz-host</span> <span style="color: #660033;">--disable-authn-default</span> <span style="color: #660033;">--disable-authn-file</span></pre></div></div>

<p>The following is the configure line for the SVN install.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>nginx_apache_svn_test <span style="color: #660033;">--with-apxs</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>nginx_apache_svn_test<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>apxs</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://rtmatheson.com/2010/04/installing-nginx-apache-and-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

