Table of Contents

AuthBasic Handler

Presentation

The AuthBasic Handler is a special Handler using AuthBasic method to authenticate and grante access to a virtual host.

The Handler sends a WWW-Authenticate header to the client, to request user id and password. Then it checks credentials by using LL::NG REST web service (REST session service must be enabled in the manager). Once session is granted, the Handler will check authorizations like the standard Handler.

This feature can be useful to allow a third party application to access a virtual host with user credentials by sending a Basic challenge to it.

Configuration

Portal

REST server must be enabled on portal.

Virtual host

You just have to set “Type: AuthBasic” in the virtualHost options in the manager.

If you want to protect only a virtualHost part, keep type on “Main” and set type in your configuration file:

Handler parameters

No parameters needed. But you have to allow REST sessions web services, see REST sessions backend and to enable local cache (enabled by default in lemonldap-ng.ini).

With AuthBasic handler, you have to disable CSRF token by setting a special rule based on callers IP address like this :

requireToken => $env->{REMOTE_ADDR} !~ /^127\.0\.[1-3]\.1$/