source: package_branches/invirt-web/hvirt/files/etc/apache2/conf.invirt/certs.mako @ 2912

Last change on this file since 2912 was 2912, checked in by gdb, 14 years ago

Initial plug at configurable mako apache config

File size: 422 bytes
Line 
1<%page args="cfg, invirt_ssl" />
2
3Listen ${cfg.web.sites.certs.port}
4<VirtualHost *:${cfg.web.sites.certs.port}>
5        ServerAdmin ${cfg.web.errormail}
6        ServerName ${cfg.web.hostname}:${cfg.web.sites.certs.port}
7        <%call expr="invirt_ssl()">
8                Require valid-user
9                AuthType SSLCert
10                AuthSSLCertVar SSL_CLIENT_S_DN_Email
11                AuthSSLCertStripSuffix "${cfg.web.sites.certs.suffix}"
12        </%call>
13        SSLVerifyClient require
14</VirtualHost>
Note: See TracBrowser for help on using the repository browser.