[Collab-qa-commits] r459 - svnbuildstat

goneri-guest at alioth.debian.org goneri-guest at alioth.debian.org
Wed Sep 19 10:08:00 UTC 2007


Author: goneri-guest
Date: 2007-09-19 10:08:00 +0000 (Wed, 19 Sep 2007)
New Revision: 459

Modified:
   svnbuildstat/README
Log:
add my apache setting in the README


Modified: svnbuildstat/README
===================================================================
--- svnbuildstat/README	2007-09-19 09:15:55 UTC (rev 458)
+++ svnbuildstat/README	2007-09-19 10:08:00 UTC (rev 459)
@@ -2,3 +2,69 @@
 
 to get the packages to build:
 select package.name,build.rev from package left join build on package.id=build.package_id and package.rev=build.rev where build.rev is null and (package.isnative=true or package.istarballpresent=true);
+
+INSTALLATION:
+  This is the Apache configuration for svnbp:
+  NameVirtualHost *:80
+  <VirtualHost *:80>
+      ServerAdmin goneri at rulezlan.org 
+      DocumentRoot /home/sites/svnbuildstat.debian.net/
+      ServerName svnbuildstat.debian.net 
+      RewriteEngine On
+      ErrorLog /var/log/apache2/svnbuildstat-debian-net-error_log
+      CustomLog /var/log/apache2/svnbuildstat-debian-net-access_log common
+  
+      LogLevel info 
+  
+  
+  # Uncomment if you want to use Apache mod_cache
+  #<IfModule mod_cache.c>
+  ##LoadModule disk_cache_module modules/mod_disk_cache.so
+  ## If you want to use mod_disk_cache instead of mod_mem_cache,
+  ## uncomment the line above and comment out the LoadModule line below.
+  #<IfModule mod_disk_cache.c>
+  #CacheRoot /tmp
+  #CacheEnable disk /
+  #CacheDirLevels 5
+  #CacheDirLength 3
+  #CacheDefaultExpire 600
+  #CacheIgnoreNoLastMod On
+  #CacheMaxExpire 600
+  #CacheIgnoreCacheControl On
+  #</IfModule>
+  ##
+  #<IfModule mod_mem_cache.c>
+  #CacheEnable mem /
+  #MCacheSize 4096
+  #CacheDefaultExpire 60
+  #CacheMaxObjectCount 100
+  #MCacheMinObjectSize 1
+  #CacheMaxObjectSize 2048
+  #</IfModule>
+  ##
+  ### seems to impossible to do regex here
+  #CacheDisable /packages/tobuildv2/amd64
+  #CacheDisable /packages/tobuildv2/i386
+  #CacheDisable /packages/tobuildv2/ppc
+  #CacheDisable /packages/tobuildv2/sparc
+  #</IfModule>
+  
+      <Perl>
+      # Where your svnbp installation is
+      use lib '/home/sites/svnbuildstat.debian.net/svnbuildstat/lib';
+      </Perl>
+  
+      PerlModule SvnBuildStat::WWW
+  
+      <Location />
+          SetHandler          modperl
+          PerlResponseHandler SvnBuildStat::WWW
+  
+  	AllowOverride None
+  	Options None
+  	Order allow,deny
+  	Allow from all
+      </Location>
+  
+  </VirtualHost>
+  




More information about the Collab-qa-commits mailing list