Bot Updating Documentation

pull/14/head
LinuxServer-CI 2020-07-27 16:12:39 -04:00
rodzic 9fb5d79daf
commit dbd3e51585
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -38,6 +38,8 @@ docker create \
--name=ldap-auth \
-e TZ=Europe/London \
-e FERNETKEY= `#optional` \
-e CERTFILE= `#optional` \
-e KEYFILE= `#optional` \
-p 8888:8888 \
-p 9000:9000 \
--restart unless-stopped \
@ -59,6 +61,8 @@ services:
environment:
- TZ=Europe/London
- FERNETKEY= #optional
- CERTFILE= #optional
- KEYFILE= #optional
ports:
- 8888:8888
- 9000:9000
@ -83,6 +87,8 @@ Docker images are configured using parameters passed at runtime (such as those a
| :----: | --- |
| `TZ=Europe/London` | Specify a timezone to use EG Europe/London |
| `FERNETKEY=` | Optionally define a custom fernet key, has to be base64-encoded 32-byte (only needed if container is frequently recreated, or if using multi-node setups, invalidating previous authentications) |
| `CERTFILE=` | Point this to a certificate file to enable HTTP over SSL (HTTPS) for the ldap auth daemon |
| `KEYFILE=` | Point this to the private key file, matching the certificate file referred to in CERTFILE |
### Volume Mappings (`-v`)
@ -136,6 +142,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
## Versions
* **27.07.20:** - Add support for HTTP over SSL (HTTPS).
* **21.07.20:** - Add support for optional user defined fernet key.
* **02.06.20:** - Rebasing to alpine 3.12, serve login page at `/ldaplogin` as well as `/login`, to prevent clashes with reverese proxied apps.
* **17.05.20:** - Add support for self-signed CA certs.