A lightweight, easy-to-use, and performant reverse proxy with a Web UI and dashboard.
Join our Discord for help and discussions
- Easy to use
- Effortless configuration
- Simple multi-node setup
- Error messages is clear and detailed, easy troubleshooting
- Auto SSL cert management (See Supported DNS-01 Challenge Providers)
- Auto configuration for docker containers
- Auto hot-reload on container state / config file changes
- idlesleeper: stop containers on idle, wake it up on traffic (optional, see screenshots)
- HTTP(s) reserve proxy
- HTTP middleware support
- Custom error pages support
- TCP and UDP port forwarding
- Web UI with App dashboard
- Supports linux/amd64, linux/arm64
- Written in Go
-
Pull docker image
docker pull ghcr.io/yusing/go-proxy:latest
-
Create new directory,
cd
into it, then run setupdocker run --rm -v .:/setup ghcr.io/yusing/go-proxy /app/go-proxy setup
-
Setup DNS Records point to machine which runs
go-proxy
, e.g.- A Record:
*.y.z
->10.0.10.1
- AAAA Record:
*.y.z
->::ffff:a00:a01
- A Record:
-
Setup
docker-socket-proxy
other docker nodes (if any) (see Multi docker nodes setup) and then them insideconfig.yml
-
Done. You may now do some extra configuration
- With text editor (e.g. Visual Studio Code)
- With Web UI via
http://localhost:3000
orhttps://gp.y.z
- For more info, See Wiki
Copy .vscode/settings.example.json
to .vscode/settings.json
and modify it to fit your needs
-
Clone the repository
git clone https://github.com/yusing/go-proxy --depth=1
-
Install / Upgrade go (>=1.22) and
make
if not already -
Clear cache if you have built this before (go < 1.22) with
go clean -cache
-
get dependencies with
make get
-
build binary with
make build