https://github.com/chneau/docker-nginx-proxy
https://github.com/chneau/docker-nginx-proxy
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chneau/docker-nginx-proxy
- Owner: chneau
- Created: 2024-09-25T10:06:54.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-25T11:05:54.000Z (over 1 year ago)
- Last Synced: 2025-03-28T19:03:15.609Z (about 1 year ago)
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-proxy
Docker image used to proxy requests to another host.
## Test it!
```bash
docker run --rm -it -e PROXY_PASS=https://httpbin.org -p 7777:8080 ghcr.io/chneau/nginx-proxy
# open your browser at http://localhost:7777 to see the httpbin.org
```
## Typical usage
```bash
docker run --rm -it -e PROXY_PASS=https://app.posthog.com -p 7777:8080 ghcr.io/chneau/nginx-proxy
```