source: misc/vhost/dbnp.org_ci.conf @ 763

Last change on this file since 763 was 763, checked in by duh, 13 years ago

updated documentation

  • Property svn:keywords set to Author Rev Date
File size: 956 bytes
Line 
1# Apache Virtual Host for GSCF Continuous Integration Build
2#
3# Author        Jeroen Wesbeek <J****n.W******@gmail.com>
4# Since         20100801
5#
6# Revision Information:
7# $Author: duh $
8# $Date: 2010-08-02 13:07:27 +0000 (ma, 02 aug 2010) $
9# $Rev: 763 $
10#
11<VirtualHost *:80>
12        ServerName ci.dbnp.org
13        ServerAlias gscf.osx.eu
14
15        ErrorLog logs/gscf-error.log
16        CustomLog logs/gscf-access.log combined
17
18        <IfModule mod_rewrite.c>
19                RewriteEngine on
20                RewriteRule ^/gscf-0.4.3/(.*)$ /$1 [L,PT,NC,NE]
21        </IfModule>
22
23        <IfModule mod_proxy.c>
24                <Proxy *>
25                        Order deny,allow
26                        Allow from all
27                </Proxy>
28
29                ProxyStatus On
30                ProxyPass / balancer://gscf-cluster/gscf-0.4.3/ stickysession=JSESSIONID|jsessionid nofailover=On
31                ProxyPassReverse / balancer://gscf-cluster/gscf-0.4.3/
32#               ProxyPass / ajp://localhost:8009/gscf-0.4.3/
33#               ProxyPassReverse / ajp://localhost:8009/gscf-0.4.3/
34                ProxyPassReverseCookiePath /gscf-0.4.3 /
35
36                <Proxy balancer://gscf-cluster>
37                        BalancerMember ajp://localhost:8009
38                </Proxy>
39        </IfModule>
40</VirtualHost>
Note: See TracBrowser for help on using the repository browser.