Table of Contents

REST configuration backend

You can share your configuration over the network using REST proxy system.

Note that REST is not a real configuration backend, but just a proxy system to access to your configuration over the network

Configuration

First, configure your real backend

# SOAP functions for configuration access (disabled by default)
<Location /index.fcgi/config>
    Require ip 192.168.2.0/24
</Location>

Next, configure REST for your remote servers

Change configuration in lemonldap-ng.ini :

type         = REST
baseUrl      = https://auth.example.com/index.fcgi/config

You can also add some other parameters

User         = lemonldap
Password     = mypassword
# LWP::UserAgent parameters
proxyOptions = { timeout => 5 }