In this video I install Nginx Apache and SVN. Download links are here…
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
StartServers 1
MinSpareServers 1
MaxSpareServers 1
MaxClients 10
MaxRequestsPerChild 0
DAV svn
SVNPath /usr/local/nginx_svn_test/testrepos
SVNAutoversioning on
Options Indexes FollowSymLinks
Order allow,deny
Allow from all
This is the Nginx proxy pass configuration
location / {
proxy_pass http://localhost:86;
}
The following is the line that configures the apache compile.