maintained by codedevote
This Dockerfile gives you a secured nginx reverse proxy that terminates ssl and proxy passes to a rancher server. This image is based on marvambass/docker-nginx-ssl-secure and adds a nginx configuration file for rancher server (rancher/rancher).
View in Docker Hub codedevote/nginx-ssl-proxy-rancher
View in GitHub codedevote/docker-nginx-ssl-proxy-rancher
- DH_SIZE
- default: 2048 (which takes a long time to create), for demo or unsecure applications you can use smaller values like 512
-
RANCHER_URL
-
default: localhost
-
RANCHER_PORT
-
default: 8080
-
RANCHER_CONTAINER_NAME
-
default: rancher
All the information on running the base image also applies to this container.
- Since the nginx container needs to communicate with the rancher container, you need to make sure, there is a link between those two containers. You can either use the (deprecated) --link option to link the rancher container to the nginx container or you put both containers on a docker network (by creating one useing docker network create). There seems to be an issue (see #2) using the default docker bridge network, so make sure, you create a dedicated network and hook both containers to this network by adding the --net option to your docker run command.
- The rancher server can be reached from nginx container on the docker network at http://$RANCHER_CONTAINER_NAME:$RANCHER_PORT (for information on how to setup a rancher server refer to https://github.com/rancher/rancher).
- You bind-mount a directory to /etc/nginx/external with the following minimum contents:
- SSL certificate (chained for intermediate CAs) in a file called cert.pem
- Private key in a file called key.pem
- You can also put a dh.pem file here (see base image docs). If not, one will be created on first start.
To run this image you can use the following command:
docker run -d \
-p 80:80 -p 443:443 \
-e 'RANCHER_URL=rancher.example.org' \
-e 'RANCHER_CONTAINER_NAME=rancher' \
-e 'RANCHER_PORT=8080' \
-v $EXT_DIR:/etc/nginx/external/ \
codedevote/nginx-ssl-proxy-rancher