source: package_branches/invirt-web/hvirt/files/etc/apache2/conf.invirt/krb.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: 468 bytes
Line 
1<%inherit "master.mako"/>
2
3Listen ${cfg.web.sites.krb.port}
4<VirtualHost *:442>
5        ServerAdmin ${cfg.web.errormail}
6        ServerName ${cfg.web.hostname}:${cfg.web.sites.krb.port}
7        <%call expr="invirt_webinterface()">
8                Require valid-user
9                AuthType Kerberos
10                KrbMethodNegotiate on
11                KrbMethodK5Passwd off
12                KrbAuthoritative off
13                KrbAuthRealms ${cfg.kerberos.realm}
14                Krb5Keytab /etc/invirt/keytab
15                KrbSaveCredentials off
16        </%call>
17        SSLVerifyClient optional
18</VirtualHost>
Note: See TracBrowser for help on using the repository browser.