From 7a12fa071dcc440c062ad69d10097a0e38c575d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89loi=20Rivard?= Date: Wed, 19 Aug 2020 14:01:33 +0200 Subject: [PATCH] readme --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index f51a1120..7d31deb9 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,25 @@ oidc-ldap-bridge is a simple OpenID Connect provider based upon OpenLDAP. It authenticates your LDAP users, and do not need any additional database to work. Everything is stored in your OpenLDAP server. +## Install + +First you need to install the schemas into your LDAP server. + +### Option 1: Add the schema into your filesystem + +```bash +sudo cp schema/* /etc/openldap/schema # or /etc/ldap/schema +sudo service slapd restart +``` + +### Option 2: Use slapadd + +```bash +sudo slapadd -n0 -l schema/*.ldif +``` + +TBD + ## Contribute Contributions are welcome!