Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 550 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 550 Bytes

Docker Caddy Reverse Proxy

A Dockerfile with a configurable Caddy reverse proxy.

Getting Started

You'll want to customize the following command:

docker run -p 8080:8080 \
  -e REVERSE_PROXY_FROM=:8080 \
  -e REVERSE_PROXY_TO=https://statuscode.app \
  -e REVERSE_PROXY_USERNAME=username \
  -e REVERSE_PROXY_HASHED_PASSWORD=$(caddy hash-password -p password) \
  pagertree/docker-caddy-reverse-proxy:latest

Now navigate to http://localhost:8080, login using the provided username and password and "voila!" it should be proxied.