blob: 06eb3861ecf988322443a98c55f60a3ea4897983 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## ldap_forwardauth
LDAP Forward Auth is a forward auth service (shocking) that i made to use with the caddy reverse proxy.
It allows a proxied login page to appear if a user tries to access restricted content while not logged in.
It uses LDAP for authentication, which can be configured in the `docker.env` file.
Once authenticated, sets the X-Webauth-User header, which can be used by applications to see who is logged in.
### how to run
```
docker compose up -d
```
|