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

Last change on this file since 2142 was 2142, checked in by Bruno Cornec, 7 years ago

Adds http support for ftp.project-builder.org

File size: 3.6 KB
RevLine 
[1496]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>
[2142]34 ServerName ftp.project-builder.org
35 ServerAdmin webmaster@project-builder.org
36 DocumentRoot /prj/ftp
37 CustomLog /var/log/httpd/www.project-builder.org/access_log combined
38 Errorlog /var/log/httpd/www.project-builder.org/error_log
39 <Directory "/prj/ftp">
40 Options Indexes MultiViews FollowSymLinks
41 AllowOverride None
42 Order allow,deny
43 Allow from all
44 </Directory>
45</VirtualHost>
46
47<VirtualHost 10.3.252.23>
[1496]48 ServerName trac.project-builder.org
49 DocumentRoot /prj/www/html/project-builder
50 ServerAdmin webmaster@project-builder.org
51 CustomLog /var/log/httpd/www.project-builder.org/access_log combined
52 Errorlog /var/log/httpd/www.project-builder.org/error_log
53
54 <Directory "/var/www/cgi-bin">
55 AllowOverride All
56 Options ExecCGI FollowSymLinks
57 Order allow,deny
58 Allow from all
59 </Directory>
60
61 <Location "/">
62 SetEnv TRAC_ENV "/prj/trac/project-builder.env"
63 </Location>
64
65 ScriptAlias / "/var/www/cgi-bin/trac.fcgi/"
66
67</VirtualHost>
68
69<VirtualHost 10.3.252.23>
70 ServerName uuwl.project-builder.org
71 DocumentRoot /prj/www/html/project-builder
72 ServerAdmin webmaster@project-builder.org
73 CustomLog /var/log/httpd/uuwl.project-builder.org/access_log combined
74 Errorlog /var/log/httpd/uuwl.project-builder.org/error_log
75
76 <Directory "/var/www/cgi-bin">
77 AllowOverride All
78 Options ExecCGI FollowSymLinks
79 Order allow,deny
80 Allow from all
81 </Directory>
82
83 <Location "/">
84 SetEnv TRAC_ENV "/prj/trac/uuwl.env"
85 </Location>
86
87 ScriptAlias / "/var/www/cgi-bin/trac.fcgi/"
88
89</VirtualHost>
90
91<VirtualHost 10.3.252.23>
92 ServerName pusk.project-builder.org
93 DocumentRoot /prj/www/html/project-builder
94 ServerAdmin webmaster@project-builder.org
95 CustomLog /var/log/httpd/pusk.project-builder.org/access_log combined
96 Errorlog /var/log/httpd/pusk.project-builder.org/error_log
97
98 <Directory "/var/www/cgi-bin">
99 AllowOverride All
100 Options ExecCGI FollowSymLinks
101 Order allow,deny
102 Allow from all
103 </Directory>
104
105 <Location "/">
106 SetEnv TRAC_ENV "/prj/trac/pusk.env"
107 </Location>
108
109 ScriptAlias / "/var/www/cgi-bin/trac.fcgi/"
110
111</VirtualHost>
112
113<VirtualHost 10.3.252.23>
114 ServerName www1.project-builder.org
115 ServerAdmin webmaster@project-builder.org
116 DocumentRoot /prj/www/html/project-builder/test
117 CustomLog /var/log/httpd/www1.project-builder.org/access_log combined
118 Errorlog /var/log/httpd/www1.project-builder.org/error_log
119 <Directory "/prj/www/html/project-builder/test">
120 Options -Indexes MultiViews FollowSymLinks +Includes
121 AllowOverride None
122 Order allow,deny
123 Allow from all
124 </Directory>
125</VirtualHost>
Note: See TracBrowser for help on using the repository browser.