Lightweight identity and authorization management software
Find a file
Éloi Rivard abd6a4ce6e readme
2020-08-19 14:13:10 +02:00
docker Actually authentify against LDAP password 2020-08-19 13:49:38 +02:00
schemas tests workflow 2020-08-18 17:39:34 +02:00
tests Actually authentify against LDAP password 2020-08-19 13:49:38 +02:00
web Actually authentify against LDAP password 2020-08-19 13:49:38 +02:00
.coveralls.yml Fixed coveralls 2020-08-19 13:51:51 +02:00
.gitignore setup.cfg instead of requirements.txt 2020-08-19 11:45:02 +02:00
.gitlab-ci.yml coveralls 2020-08-19 09:24:07 +02:00
babel.cfg i18n 2020-08-17 11:38:25 +02:00
config.sample.toml tests workflow 2020-08-18 17:39:34 +02:00
docker-compose.yml tests workflow 2020-08-18 17:39:34 +02:00
LICENSE.md License 2020-08-19 13:50:12 +02:00
README.md readme 2020-08-19 14:13:10 +02:00
setup.cfg setup.cfg instead of requirements.txt 2020-08-19 11:45:02 +02:00
setup.py setup.cfg instead of requirements.txt 2020-08-19 11:45:02 +02:00

OpenID Connect LDAP Bridge

oidc-ldap-bridge is a simple OpenID Connect provider based upon OpenLDAP.

It aims to be very light, simple to install and simple to maintain. Its main features are :

  • OAuth/OpenID Connect support.
  • Authentication against a LDAP directory.
  • No additional database requirerequired. Everything is stored in your OpenLDAP server.
  • The code is easy to read and easy to edit in case you want to write a patch

Install

First you need to install the schemas into your LDAP server. There are several ways to achieve this:

Option 1: Add the schema into your filesystem

sudo cp schema/* /etc/openldap/schema # or /etc/ldap/schema
sudo service slapd restart

Option 2: Use slapadd

sudo slapadd -n0 -l schema/*.ldif

TBD

Contribute

Contributions are welcome! To run the tests, you just need to run tox.

To try a development environment, you can run the docker image and then open https://127.0.0.1:5000

cp config.sample.toml config.toml
docker-compose up