26 lines
596 B
Plaintext
26 lines
596 B
Plaintext
|
srp-client {
|
||
|
// Example client auth.conf for using the SRPLoginModule
|
||
|
org.jboss.security.srp.jaas.SRPLoginModule required
|
||
|
password-stacking="useFirstPass"
|
||
|
principalClassName="org.jboss.security.SimplePrincipal"
|
||
|
srpServerJndiName="SRPServerInterface"
|
||
|
debug=true
|
||
|
;
|
||
|
|
||
|
// jBoss LoginModule
|
||
|
org.jboss.security.ClientLoginModule required
|
||
|
password-stacking="useFirstPass"
|
||
|
;
|
||
|
|
||
|
// Put your login modules that need jBoss here
|
||
|
};
|
||
|
|
||
|
other {
|
||
|
// jBoss LoginModule
|
||
|
org.jboss.security.ClientLoginModule required
|
||
|
;
|
||
|
|
||
|
// Put your login modules that need jBoss here
|
||
|
};
|
||
|
|