blob: 74f96504721b1c03e4a4999baf6acc1c0b23bff8 [file] [log] [blame]
/* This is example of JAAS Login configuration for digest authentication
*/
/*
StormServer section should contain a list of authorized users and their passwords.
*/
StormServer {
org.apache.zookeeper.server.auth.DigestLoginModule required
user_super="adminsecret"
user_bob="bobsecret";
user_john="johnsecret";
};
/*
StormClient section contains one user name and his/her password.
*/
StormClient {
org.apache.zookeeper.server.auth.DigestLoginModule required
username="bob"
password="bobsecret";
};