Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • username and password request, and
  • authentication and authorization.  

The default Tomcat which is the default Magnolia servlet engine. Configuration is done in JAAS can be configured in the WEB-INF/config/jaas.config file.

INSERT SCREEN GRAB

In addition, you can use a servlet engine other than The configuration can be set up differently on other servlet engines than Tomcat which is the default Magnolia servlet engine. The default configuration for the WEB-INF/config/jaas.config file is:

Code Block
magnolia {
  info.magnolia.jaas.sp.jcr.JCRAuthenticationModule requisite;
  info.magnolia.jaas.sp.jcr.JCRAuthorizationModule required;
};

This default configuration uses one class for user login and password authentication and one for authorization of user and password.

...