source: package_branches/invirt-web/hvirt/files/etc/apache2/conf.invirt/cas.mako @ 2917

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

Quoted authname

File size: 474 bytes
Line 
1<%page args="cfg, invirt_ssl" />
2
3Listen ${cfg.web.sites.cas.port}
4CASLoginURL ${cfg.web.sites.cas.login}
5CASValidateURL ${cfg.web.sites.cas.validate}
6CASValidateServer Off
7<VirtualHost *:${cfg.web.sites.cas.port}>
8        ServerAdmin ${cfg.web.errormail}
9        ServerName ${cfg.web.hostname}:${cfg.web.sites.cas.port}
10        <%call expr="invirt_ssl()">
11            AuthType CAS
12            AuthName "${cfg.web.sites.cas.authname}"
13            Require valid-user
14        </%call>
15        SSLVerifyClient require
16</VirtualHost>
Note: See TracBrowser for help on using the repository browser.