When I log in to the web interface with the credentials defined in the config-frontend.env file, I get the following error (seen with the docker-compose logs -f command):
frontend_1 | 2022/02/27 18:48:49 [error] 21#21: *2 open() "/frontend/.htpasswd" failed (2: No such file or directory), client: <IP>, server: localhost, request: "GET / HTTP/1.1", host: "<HOST>"
I was able to solve this problem by moving the .htpasswd file to the right place: docker exec -it --user root <hyphe-container> mv .htpasswd ...
Adding the .htpasswd absolute path to the hyphe_frontend/docker-entrypoint.sh file could be useful to avoid this kind of problem.
After following the Easy install: using Docker procedure with
config-frontend.env
file containing:When I log in to the web interface with the credentials defined in the
config-frontend.env
file, I get the following error (seen with thedocker-compose logs -f
command):I was able to solve this problem by moving the
.htpasswd
file to the right place:docker exec -it --user root <hyphe-container> mv .htpasswd ..
.Adding the
.htpasswd
absolute path to thehyphe_frontend/docker-entrypoint.sh
file could be useful to avoid this kind of problem.