Skip to content

A docker nginx reverse proxy with ssl termination to run rancher server over https.

License

Notifications You must be signed in to change notification settings

codedevote/docker-nginx-ssl-proxy-rancher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nginx reverse proxy with ssl termination for rancher server

maintained by codedevote

Overview

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

Environment variables and defaults

Inherited from base image

  • DH_SIZE
  • default: 2048 (which takes a long time to create), for demo or unsecure applications you can use smaller values like 512

Required by this image

  • RANCHER_URL

  • default: localhost

  • RANCHER_PORT

  • default: 8080

  • RANCHER_CONTAINER_NAME

  • default: rancher

Running codedevote/nginx-ssl-proxy-rancher container

All the information on running the base image also applies to this container.

Assumptions

  • 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.

Run command

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

About

A docker nginx reverse proxy with ssl termination to run rancher server over https.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages