forked from Github-Mirrors/canaille
readme
This commit is contained in:
parent
3666628ad9
commit
7a12fa071d
1 changed files with 19 additions and 0 deletions
19
README.md
19
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.
|
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
|
## Contribute
|
||||||
|
|
||||||
Contributions are welcome!
|
Contributions are welcome!
|
||||||
|
|
Loading…
Reference in a new issue