Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 2.54 KB

README.md

File metadata and controls

42 lines (32 loc) · 2.54 KB

go-redirect Docker Build Status

Gitter

Redirect HTTP to HTTPS with Docker


Docker Hub

Supported Tags and Dockerfile links

What is this?

This image accepts any http request and redirects to the https version of the same page.
It does not serve any pages.

What is this for?

The primary reason for this image is for doing SSL termination on a load balancer (eg: AWS ELB) in the simplest possible way.

How do I use it?

  • Run this image on any TCP port, and your own web server image on another.
docker run -d -p 8080:80 millergeek/ssl-redirect
docker run -d -p 80:80 my-web-server-image
  • Forward HTTP 80 on your load balancer to whatever port this image is running on.
  • Forward HTTPS 443 on your load balancer to whatever port your own web server is running on.

All HTTP requests will hit this image and be redirected to make HTTPS request. This is abstracted from the user.

How do I build it myself?

docker build -t ssl-redirect .
docker run ssl-redirect