source: package_branches/invirt-web/hvirt/files/etc/apache2/conf.invirt/krb.mako @ 2922

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

Updated mako templates

File size: 524 bytes
Line 
1<%inherit "master.mako"/>
2
3% if cfg.web.sites.krb.port not in [80, 443]:
4  Listen ${cfg.web.sites.krb.port}
5% endif
6<VirtualHost *:442>
7        ServerAdmin ${cfg.web.errormail}
8        ServerName ${cfg.web.hostname}:${cfg.web.sites.krb.port}
9        <%call expr="invirt_webinterface()">
10                Require valid-user
11                AuthType Kerberos
12                KrbMethodNegotiate on
13                KrbMethodK5Passwd off
14                KrbAuthoritative off
15                KrbAuthRealms ${cfg.kerberos.realm}
16                Krb5Keytab /etc/invirt/keytab
17                KrbSaveCredentials off
18        </%call>
19        SSLVerifyClient optional
20</VirtualHost>
Note: See TracBrowser for help on using the repository browser.