updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / mod_spnego-git / mod_spnego-git.install
blobda3d6bac94897ee1edeed2cff36c327d43f28071
1 post_install() {
2   echo "Sample configuration"
3   echo ""
4   echo "LoadModule spnego_module /usr/pkg/lib/httpd/mod_spnego.so"
5   echo ""
6   echo "<Directory "/my/spnego/dir">"
7   echo "AuthType SPNEGO"
8   echo "SPNEGOAuth On"
9   echo "SPNEGOAuthSaveDelegatedCred On"
10   echo "SPNEGOAuthKrb5AcceptorIdentity /etc/krb5.keytab.www"
11   echo "SPNEGOUseDisplayName off"
12   echo "Require valid-user"
13   echo "</Directory>"
15 #vim:set ts=2 sw=2 et: