source: misc/vhost/nmcdsp.org_gscf-ci.conf @ 1086

Last change on this file since 1086 was 1086, checked in by work@…, 13 years ago
  • updated apache configuration
  • Property svn:executable set to *
File size: 1015 bytes
Line 
1# Apache Virtual Host for GSCF Continuous Integration Build
2#
3# Author        Jeroen Wesbeek <J****n.W******@gmail.com>
4# Since         20100825
5#
6# Revision Information:
7# $Authoe$
8# $Date$
9# $Rev$
10#
11<VirtualHost *:80>
12        ServerName ci.gscf.nmcdsp.org
13        ServerAlias gscf.nmcdsp.org
14
15        ErrorLog /var/log/apache2/gscf-ci-error.log
16        CustomLog /var/log/apache2/gscf-ci-access.log combined
17
18        <IfModule mod_rewrite.c>
19                RewriteEngine on
20                RewriteRule ^/gscf-0.5.1-ci/(.*)$ /$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.5.1-ci/ stickysession=JSESSIONID|jsessionid nofailover=On
31                ProxyPassReverse / balancer://gscf-cluster/gscf-0.5.1-ci/
32#               ProxyPass / ajp://localhost:8009/gscf-0.5.1-ci/
33#               ProxyPassReverse / ajp://localhost:8009/gscf-0.5.1-ci/
34                ProxyPassReverseCookiePath /gscf-0.5.1-ci /
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.