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
- Host: GitHub
- URL: https://github.com/dreadlocked/jaas
- Owner: dreadlocked
- Created: 2016-11-02T15:23:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-02T15:31:38.000Z (over 9 years ago)
- Last Synced: 2025-01-21T05:27:50.198Z (over 1 year ago)
- Language: Java
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.