docker-nginx-basic-auth
docker-nginx-basic-auth copied to clipboard
:closed_lock_with_key: Simple Docker image for basic authentication
i dont want to secure a secondary container, but instead protect a served folder locally like this: ``` server { server_name example.com; root /var/www/web_root/; index index.html; auth_basic "Restricted"; auth_basic_user_file auth.htpasswd;...
I got this error when follow instructions ``` docker: Error response from daemon: could not get container for web: No such container: web. ```
## In entrypoint script `launch.sh` By using `exec "$@"` at the end, `nginx` will be `PID 1` inside the docker container, instead of `/bin/sh`. It also allows kill signals to...
hi, if the backend changes its IP address the auth proxy gets stucked for some long time - https://github.com/moby/moby/issues/30029 This update can make the auth containers more flexible. Moreover, I...
Hello, it is sometimes convenient to pass the credentials in a non-hashed form, when creating the basic auth proxy. I have added the feature... The drawback is that the `apache2-utils`...
starting docker v1.12 there's an option for an internal healthcheck this commit allows an unauthenticated requests from localhost and adds an additional server with port 9999 for orchestrated healthchecks like...
in cases of dynamic envinronments where containers move around and respwan due to health checks, the IP of the forwarded host might change nand should be resolved in case it's...
Signals like SIGINT are sent to the init process. Currently these signals are not propagated to the nginx process, inhibiting a graceful shutdown. This PR fixes that by replacing the...