/etc/jetty8/spnego.conf is in jetty8 8.1.16-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | com.sun.security.jgss.initiate {
com.sun.security.auth.module.Krb5LoginModule required
principal="HTTP/vm.mortbay.org@MORTBAY.ORG"
keyTab="/path/to/jetty/etc/krb5.keytab"
useKeyTab=true
storeKey=true
debug=true
isInitiator=false;
};
com.sun.security.jgss.accept {
com.sun.security.auth.module.Krb5LoginModule required
principal="HTTP/vm.mortbay.org@MORTBAY.ORG"
useKeyTab=true
keyTab="/path/to/jetty/etc/krb5.keytab"
storeKey=true
debug=true
isInitiator=false;
};
|