Skip to content

onisuly/docker-google-reverse-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google Reverse Proxy

Docker Build Status Docker Automated build Docker Stars Docker Pulls

This Dockerfile build an image for Nginx with capabilities of reverse proxy google.

Quick Start

docker run -d -p 8080:80 --name google-reverse-proxy --restart=always onisuly/google-reverse-proxy

How to use SSL/HTTPS

Suggest to use LetsEncrypt companion container for nginx-proxy to achieve this goal.

How to enable password protection

docker run -d -p 8080:80 --name google-reverse-proxy \
-e SECURE=true \
-e USERNAME=your_name \
-e PASSWORD=your_password \
--restart=always \
onisuly/google-reverse-proxy

If you want to add multiple users, your can generate .htpasswd file here and mount it to your container.

docker run -d -p 8080:80 --name google-reverse-proxy \
-v /your/path/to/.htpasswd:/usr/local/nginx/conf/.htpasswd \
--restart=always \
onisuly/google-reverse-proxy

Thanks:

This docker image is based on Nginx Module for Google Mirror and learns a lot from google-reverse-proxy.

Releases

No releases published

Packages

No packages published