An open API service indexing awesome lists of open source software.

https://github.com/dreadlocked/jaas

Simple implementation of JAAS with Tomcat
https://github.com/dreadlocked/jaas

Last synced: about 1 year ago
JSON representation

Simple implementation of JAAS with Tomcat

Awesome Lists containing this project

README

          

#Simple JAAS implementation

Use with Apache + Tomcat 8.

You need to create a "jaas.config" file in your Apache /conf directory with the following content:

`
IDwebappLogin{
PlainLoginModule required debug=true;
};
`

Next you need to create a "setenv.sh" file in your Apache /bin directory whit the following content:

`
export JAVA_OPTS=-Djava.security.auth.login.config==$CATALINA_BASE/conf/jaas.config
`

Place the project in your Apache /webapps directory.