Skip to content

Simple HTTP redirection service built on top of Nginx

License

Notifications You must be signed in to change notification settings

Rainist/redirector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redirector

Docker Build Statu Docker Pulls

Simple HTTP redirection service built on top of Nginx.

How to run

From the source

export IMAGE_NAME=my-redirector
docker build -t $IMAGE_NAME .
docker run -e DESTINATION=your.website.com -p 80:80 $IMAGE_NAME

From Docker Hub

docker run -it -e DESTINATION=your.website.com -p 80:80 rainist/redirector