Last change
on this file since 2917 was
2912,
checked in by gdb, 15 years ago
|
Initial plug at configurable mako apache config
|
File size:
866 bytes
|
Line | |
---|
1 | <%page args="cfg, invirt_ssl" /> |
---|
2 | |
---|
3 | Listen ${cfg.web.sites.noauth.port} |
---|
4 | <VirtualHost *:${cfg.web.sites.noauth.port}> |
---|
5 | ServerAdmin ${cfg.web.errormail} |
---|
6 | ServerName ${cfg.web.hostname}:${cfg.web.sites.noauth.port} |
---|
7 | |
---|
8 | DocumentRoot /var/www/invirt-web |
---|
9 | <Directory /> |
---|
10 | Options Indexes FollowSymLinks MultiViews ExecCGI |
---|
11 | AllowOverride None |
---|
12 | Order allow,deny |
---|
13 | allow from all |
---|
14 | </Directory> |
---|
15 | |
---|
16 | ErrorLog /var/log/apache2/error.log |
---|
17 | |
---|
18 | # Possible values include: debug, info, notice, warn, error, crit, |
---|
19 | # alert, emerg. |
---|
20 | LogLevel warn |
---|
21 | |
---|
22 | CustomLog /var/log/apache2/ssl_nocert_access.log combined |
---|
23 | ServerSignature On |
---|
24 | |
---|
25 | SSLEngine on |
---|
26 | |
---|
27 | SSLCertificateFile ${cfg.web.ssl.cert} |
---|
28 | SSLCertificateKeyFile ${cfg.web.ssl.key} |
---|
29 | |
---|
30 | SSLVerifyClient none |
---|
31 | |
---|
32 | SSLOptions +StdEnvVars |
---|
33 | |
---|
34 | SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0 |
---|
35 | </VirtualHost> |
---|
Note: See
TracBrowser
for help on using the repository browser.