mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 23:35:09 +00:00
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.)
This commit is contained in:
parent
6a04aa9131
commit
d505c91eab
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ Create a file called `traefik.env` in `~/gitops`
|
||||||
```shell
|
```shell
|
||||||
echo 'TRAEFIK_DOMAIN=traefik.example.com' > ~/gitops/traefik.env
|
echo 'TRAEFIK_DOMAIN=traefik.example.com' > ~/gitops/traefik.env
|
||||||
echo 'EMAIL=admin@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:
|
Note:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue