From dbd3e51585a4542e5f8f0f323b018040c49f060d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 27 Jul 2020 16:12:39 -0400 Subject: [PATCH] Bot Updating Documentation --- images/docker-ldap-auth.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/images/docker-ldap-auth.md b/images/docker-ldap-auth.md index d2776dabd..7d9a92fae 100644 --- a/images/docker-ldap-auth.md +++ b/images/docker-ldap-auth.md @@ -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.