source: MondoRescue/branches/2.2.8/website/mondorescue.org.conf@ 3628

Last change on this file since 3628 was 2786, checked in by Bruno Cornec, 13 years ago

r2156@localhost (orig r2155): bruno | 2009-02-19 20:03:05 +0100
backup of mondorescue web site and update of support Web page for Miracle and HP


File size: 3.7 KB
Line 
1NameVirtualHost 10.3.252.23
2
3<VirtualHost 10.3.252.23>
4 ServerName www.mondorescue.org
5 ServerAlias mondorescue.org
6 ServerAdmin webmaster@mondorescue.org
7 DocumentRoot /mondo/www/html/mondo
8 CustomLog /var/log/httpd/www.mondorescue.org/access_log combined
9 Errorlog /var/log/httpd/www.mondorescue.org/error_log
10 RewriteEngine On
11 RewriteRule ^/index\.html$ /index.shtml
12 RewriteRule ^/$ /index.shtml
13 SetEnv TRAC_ENV "/mondo/trac/mondorescue.env"
14
15 <Directory "/mondo/www/html/mondo">
16 DirectoryIndex index.shtml
17 Options -Indexes MultiViews FollowSymLinks +Includes
18 AllowOverride None
19 Order allow,deny
20 Allow from all
21 </Directory>
22
23 <Directory "/mondo/www/cgi-bin">
24 AllowOverride All
25 Options ExecCGI FollowSymLinks
26 Order allow,deny
27 Allow from all
28 </Directory>
29
30 ScriptAlias /cgi-bin/ "/mondo/www/cgi-bin/"
31
32</VirtualHost>
33
34<VirtualHost 10.3.252.23>
35 ServerName trac.mondorescue.org
36 SetEnv TRAC_ENV "/mondo/trac/mondorescue.env"
37 DocumentRoot /mondo/www/cgi-bin/trac.cgi
38 ServerAdmin webmaster@mondorescue.org
39 CustomLog /var/log/httpd/www.mondorescue.org/access_log combined
40 Errorlog /var/log/httpd/www.mondorescue.org/error_log
41
42 # fix mdk bug #16298
43 PassEnv LC_ALL
44 PassEnv LANG
45
46 <Directory "/mondo/www/cgi-bin">
47 AllowOverride All
48 Options ExecCGI FollowSymLinks
49 Order allow,deny
50 Allow from all
51 </Directory>
52
53 Alias /trac/ "/usr/share/trac/htdocs/"
54 ScriptAlias /cgi-bin/ "/mondo/www/cgi-bin/"
55
56 # You need something like this to authenticate users
57 #<Location "/login">
58 #AuthType Basic
59 #AuthName "MondoRescue"
60 #AuthUserFile /usr/local/etc/trac.htpasswd
61 #Require valid-user
62 #</Location>
63</VirtualHost>
64
65<VirtualHost 10.3.252.23>
66 ServerName oldwww.mondorescue.org
67 ServerAdmin webmaster@mondorescue.org
68 DocumentRoot /mondo/www/html/oldwww
69 CustomLog /var/log/httpd/oldwww.mondorescue.org/access_log combined
70 Errorlog /var/log/httpd/oldwww.mondorescue.org/error_log
71 <Directory "/mondo/www/html/oldwww">
72 Options -Indexes MultiViews FollowSymLinks +Includes
73 AllowOverride None
74 Order allow,deny
75 Allow from all
76 </Directory>
77</VirtualHost>
78
79<VirtualHost 10.3.252.23>
80 ServerName www1.mondorescue.org
81 ServerAdmin webmaster@mondorescue.org
82 DocumentRoot /mondo/www/html/test
83 CustomLog /var/log/httpd/www1.mondorescue.org/access_log combined
84 Errorlog /var/log/httpd/www1.mondorescue.org/error_log
85 <Directory "/mondo/www/html/test">
86 Options -Indexes MultiViews FollowSymLinks +Includes
87 AllowOverride None
88 Order allow,deny
89 Allow from all
90 </Directory>
91</VirtualHost>
92
93<VirtualHost 10.3.252.23>
94 ServerName mondo.hpintelco.org
95 ServerAdmin webmaster@mondorescue.org
96 DocumentRoot /var/www/html
97 CustomLog /var/log/httpd/mondo.hpintelco.org/access_log combined
98 Errorlog /var/log/httpd/mondo.hpintelco.org/error_log
99 <Directory "/var/www/html">
100 Options Indexes MultiViews FollowSymLinks +Includes
101 AllowOverride None
102 Order allow,deny
103 Allow from all
104 </Directory>
105</VirtualHost>
106
107<VirtualHost 10.3.252.23>
108 ServerName www.mondorescue.com
109 ServerAlias mondorescue.com
110 ServerAdmin webmaster@mondorescue.com
111 DocumentRoot /mondo/www/html/mondo
112 CustomLog /var/log/httpd/www.mondorescue.com/access_log combined
113 Errorlog /var/log/httpd/www.mondorescue.com/error_log
114 <Directory "/mondo/www/html/mondo">
115 DirectoryIndex index.shtml
116 Options -Indexes MultiViews FollowSymLinks +Includes
117 AllowOverride None
118 Order allow,deny
119 Allow from all
120 </Directory>
121</VirtualHost>
Note: See TracBrowser for help on using the repository browser.