source: ProjectBuilder/devel/website/project-builder.org.conf@ 1496

Last change on this file since 1496 was 1496, checked in by Bruno Cornec, 12 years ago
  • Adding PUSK presentation
  • Adding pb website conf
File size: 3.2 KB
Line 
1NameVirtualHost 10.3.252.23
2
3<VirtualHost 10.3.252.23>
4 ServerName www.project-builder.org
5 ServerAlias project-builder.org
6 ServerAdmin webmaster@project-builder.org
7 DocumentRoot /prj/www/html/project-builder
8 CustomLog /var/log/httpd/www.project-builder.org/access_log combined
9 Errorlog /var/log/httpd/www.project-builder.org/error_log
10 RewriteEngine On
11 RewriteRule ^/index\.html$ /index.shtml
12 RewriteRule ^/$ /index.shtml
13
14 <Directory "/prj/www/html/project-builder">
15 DirectoryIndex index.shtml
16 Options -Indexes MultiViews FollowSymLinks +Includes
17 AllowOverride None
18 Order allow,deny
19 Allow from all
20 </Directory>
21
22 <Directory "/var/www/cgi-bin">
23 AllowOverride All
24 Options ExecCGI FollowSymLinks
25 Order allow,deny
26 Allow from all
27 </Directory>
28
29 ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
30
31</VirtualHost>
32
33<VirtualHost 10.3.252.23>
34 ServerName trac.project-builder.org
35 DocumentRoot /prj/www/html/project-builder
36 ServerAdmin webmaster@project-builder.org
37 CustomLog /var/log/httpd/www.project-builder.org/access_log combined
38 Errorlog /var/log/httpd/www.project-builder.org/error_log
39
40 <Directory "/var/www/cgi-bin">
41 AllowOverride All
42 Options ExecCGI FollowSymLinks
43 Order allow,deny
44 Allow from all
45 </Directory>
46
47 <Location "/">
48 SetEnv TRAC_ENV "/prj/trac/project-builder.env"
49 </Location>
50
51 ScriptAlias / "/var/www/cgi-bin/trac.fcgi/"
52
53</VirtualHost>
54
55<VirtualHost 10.3.252.23>
56 ServerName uuwl.project-builder.org
57 DocumentRoot /prj/www/html/project-builder
58 ServerAdmin webmaster@project-builder.org
59 CustomLog /var/log/httpd/uuwl.project-builder.org/access_log combined
60 Errorlog /var/log/httpd/uuwl.project-builder.org/error_log
61
62 <Directory "/var/www/cgi-bin">
63 AllowOverride All
64 Options ExecCGI FollowSymLinks
65 Order allow,deny
66 Allow from all
67 </Directory>
68
69 <Location "/">
70 SetEnv TRAC_ENV "/prj/trac/uuwl.env"
71 </Location>
72
73 ScriptAlias / "/var/www/cgi-bin/trac.fcgi/"
74
75</VirtualHost>
76
77<VirtualHost 10.3.252.23>
78 ServerName pusk.project-builder.org
79 DocumentRoot /prj/www/html/project-builder
80 ServerAdmin webmaster@project-builder.org
81 CustomLog /var/log/httpd/pusk.project-builder.org/access_log combined
82 Errorlog /var/log/httpd/pusk.project-builder.org/error_log
83
84 <Directory "/var/www/cgi-bin">
85 AllowOverride All
86 Options ExecCGI FollowSymLinks
87 Order allow,deny
88 Allow from all
89 </Directory>
90
91 <Location "/">
92 SetEnv TRAC_ENV "/prj/trac/pusk.env"
93 </Location>
94
95 ScriptAlias / "/var/www/cgi-bin/trac.fcgi/"
96
97</VirtualHost>
98
99<VirtualHost 10.3.252.23>
100 ServerName www1.project-builder.org
101 ServerAdmin webmaster@project-builder.org
102 DocumentRoot /prj/www/html/project-builder/test
103 CustomLog /var/log/httpd/www1.project-builder.org/access_log combined
104 Errorlog /var/log/httpd/www1.project-builder.org/error_log
105 <Directory "/prj/www/html/project-builder/test">
106 Options -Indexes MultiViews FollowSymLinks +Includes
107 AllowOverride None
108 Order allow,deny
109 Allow from all
110 </Directory>
111</VirtualHost>
Note: See TracBrowser for help on using the repository browser.