canaille-globuzma/README.md
Éloi Rivard 015bb81dda Readme
2020-09-26 10:23:05 +02:00

61 lines
1.9 KiB
Markdown

⚠ OpenID Connect LDAP Bridge is under development. Do not use in production yet. ⚠
# 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 required. 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:
### LDAP schemas
#### Option 1: Add the schema into your filesystem
```bash
test -d /etc/openldap/schema && sudo cp schema/* /etc/openldap/schema
test -d /etc/ldap/schema && sudo cp schema/* /etc/ldap/schema
sudo service slapd restart
```
#### Option 2: Use slapadd
```bash
sudo slapadd -n0 -l schema/*.ldif
```
### Web interface
Then you can deploy the code either by copying the git repository or installing the pip package:
```bash
pip install oidc_ldap_bridge
```
Finally you have to run the website in a WSGI server:
```bash
pip install gunicorn
gunicorn "oidc_ldap_bridge:create_app()"
```
## 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
You can then connect with user *admin* and password *admin* to access an admin account, or user *user* and password *user* for a regular one.
```bash
cp oidc_ldap_bridge/conf/config.sample.toml oidc_ldap_bridge/conf/config.toml
cp oidc_ldap_bridge/conf/oauth-authorization-server.sample.json oidc_ldap_bridge/conf/oauth-authorization-server.json
cp oidc_ldap_bridge/conf/openid-configuration.sample.json oidc_ldap_bridge/conf/openid-configuration.json
docker-compose up
```