From 76e41a4848ad57bd1b1873886e253fd31894492d Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Thu, 25 Jun 2026 12:08:17 +0200 Subject: [PATCH] fix: README contains wrong variable name It's TRAEFIK_ACME_MAIL not TRAEFIK_LETSENCRYPT_EMAIL Closes: #263 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c9816d7..ce7874e 100644 --- a/README.md +++ b/README.md @@ -319,12 +319,12 @@ OpenCloud Compose supports adding SSL certificates for public domains and develo ### Use Let's Encrypt with ACME Challenge 1. **Enable Let's Encrypt**: - - Set `TRAEFIK_LETSENCRYPT_EMAIL` to your email address for the ACME challenge + - Set `TRAEFIK_ACME_MAIL` to your email address for the ACME challenge - Set `TRAEFIK_SERVICES_TLS_CONFIG="tls.certresolver=letsencrypt"` to use Let's Encrypt (default value) ```bash # In your .env file - TRAEFIK_LETSENCRYPT_EMAIL=devops@your-domain.tld + TRAEFIK_ACME_MAIL=devops@your-domain.tld TRAEFIK_SERVICES_TLS_CONFIG="tls.certresolver=letsencrypt" ``` @@ -412,7 +412,7 @@ Key variables: | `LDAP_BIND_PASSWORD` | LDAP password for the bind user | admin | | `KC_DB_USERNAME` | Database user for keycloak | keycloak | | `KC_DB_PASSWORD` | Database password for keycloak | keycloak | -| `TRAEFIK_LETSENCRYPT_EMAIL` | Email Address for the Let's Encrypt ACME challenge | example@example.org | +| `TRAEFIK_ACME_MAIL` | Email Address for the Let's Encrypt ACME challenge | example@example.org | | `TRAEFIK_SERVICES_TLS_CONFIG` | Tell traefik and the services which TLS config to use | tls.certresolver=letsencrypt | | `TRAEFIK_CERTS_DIR` | Directory for custom certificates. | ./certs |