From d505c91eab832282dcdef7c51c2e23560edbe944 Mon Sep 17 00:00:00 2001 From: YapWC <34093361+YapWC@users.noreply.github.com> Date: Sat, 19 Jul 2025 10:54:05 +0800 Subject: [PATCH] Update Install Traefik Section (#1664) Since the password would be parsed in single quote (') the text transformation is no longer needed. This update is based on issue #1002 (Unable to login to Traefik Dashboard even after providing Correct password in Basic Auth.) --- docs/single-server-example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/single-server-example.md b/docs/single-server-example.md index ca61cda1..0bb83798 100644 --- a/docs/single-server-example.md +++ b/docs/single-server-example.md @@ -65,7 +65,7 @@ Create a file called `traefik.env` in `~/gitops` ```shell echo 'TRAEFIK_DOMAIN=traefik.example.com' > ~/gitops/traefik.env echo 'EMAIL=admin@example.com' >> ~/gitops/traefik.env -echo 'HASHED_PASSWORD='$(openssl passwd -apr1 changeit | sed -e s/\\$/\\$\\$/g) >> ~/gitops/traefik.env +echo "HASHED_PASSWORD='$(openssl passwd -apr1 changeit)'" >> ~/gitops/traefik.env ``` Note: