source: MondoRescue/branches/3.0/website/mondorescue.org.conf@ 2899

Last change on this file since 2899 was 2896, checked in by Bruno Cornec, 13 years ago
  • Improve -d option description for NFS
  • Allow http download for ftp content
  • New italian mirror
File size: 3.9 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 /prj/www/html/mondorescue
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
14 <Directory "/prj/www/html/mondorescue">
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 "/prj/www/html/mondorescue/ftp">
23 Options Indexes MultiViews FollowSymLinks
24 AllowOverride None
25 Order allow,deny
26 Allow from all
27 </Directory>
28
29 <Directory "/var/www/cgi-bin">
30 AllowOverride All
31 Options ExecCGI FollowSymLinks
32 Order allow,deny
33 Allow from all
34 </Directory>
35
36</VirtualHost>
37
38<VirtualHost 10.3.252.23>
39 ServerName trac.mondorescue.org
40 DocumentRoot /prj/www/html/mondorescue
41 ServerAdmin webmaster@mondorescue.org
42 CustomLog /var/log/httpd/www.mondorescue.org/access_log combined
43 Errorlog /var/log/httpd/www.mondorescue.org/error_log
44
45 <Directory "/var/www/cgi-bin">
46 AllowOverride All
47 Options ExecCGI FollowSymLinks
48 Order allow,deny
49 Allow from all
50 </Directory>
51
52 <Location "/">
53 SetEnv TRAC_ENV "/prj/trac/mondorescue.env"
54 </Location>
55
56 ScriptAlias / "/var/www/cgi-bin/trac.fcgi/"
57</VirtualHost>
58
59<VirtualHost 10.3.252.23>
60 ServerName oldwww.mondorescue.org
61 ServerAdmin webmaster@mondorescue.org
62 DocumentRoot /prj/www/html/oldmondorescue
63 CustomLog /var/log/httpd/oldwww.mondorescue.org/access_log combined
64 Errorlog /var/log/httpd/oldwww.mondorescue.org/error_log
65 <Directory "/prj/www/html/oldmondorescue">
66 Options -Indexes MultiViews FollowSymLinks +Includes
67 AllowOverride None
68 Order allow,deny
69 Allow from all
70 </Directory>
71</VirtualHost>
72
73<VirtualHost 10.3.252.23>
74 ServerName www1.mondorescue.org
75 ServerAdmin webmaster@mondorescue.org
76 DocumentRoot /prj/www/html/testmondorescue
77 CustomLog /var/log/httpd/www1.mondorescue.org/access_log combined
78 Errorlog /var/log/httpd/www1.mondorescue.org/error_log
79 <Directory "/prj/www/html/testmondorescue">
80 Options -Indexes MultiViews FollowSymLinks +Includes
81 AllowOverride None
82 Order allow,deny
83 Allow from all
84 </Directory>
85</VirtualHost>
86
87<VirtualHost 10.3.252.23>
88 ServerName mondo.hpintelco.org
89 ServerAdmin webmaster@mondorescue.org
90 DocumentRoot /prj/www/html/mondorescue
91 CustomLog /var/log/httpd/mondo.hpintelco.org/access_log combined
92 Errorlog /var/log/httpd/mondo.hpintelco.org/error_log
93 <Directory "/prj/www/html/mondorescue">
94 Options Indexes MultiViews FollowSymLinks +Includes
95 AllowOverride None
96 Order allow,deny
97 Allow from all
98 </Directory>
99 <Directory "/prj/www/html/mondorescue/ftp">
100 Options Indexes MultiViews FollowSymLinks
101 AllowOverride None
102 Order allow,deny
103 Allow from all
104 </Directory>
105
106</VirtualHost>
107
108<VirtualHost 10.3.252.23>
109 ServerName www.mondorescue.com
110 ServerAlias mondorescue.com
111 ServerAdmin webmaster@mondorescue.com
112 DocumentRoot /prj/www/html/mondorescue
113 CustomLog /var/log/httpd/www.mondorescue.com/access_log combined
114 Errorlog /var/log/httpd/www.mondorescue.com/error_log
115 <Directory "/prj/www/html/mondorescue">
116 DirectoryIndex index.shtml
117 Options -Indexes MultiViews FollowSymLinks +Includes
118 AllowOverride None
119 Order allow,deny
120 Allow from all
121 </Directory>
122 <Directory "/prj/www/html/mondorescue/ftp">
123 Options Indexes MultiViews FollowSymLinks
124 AllowOverride None
125 Order allow,deny
126 Allow from all
127 </Directory>
128
129</VirtualHost>
Note: See TracBrowser for help on using the repository browser.