Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damnever/goodog
A transparent proxy powered by HTTP/3
https://github.com/damnever/goodog
caddy http3 tcp transparent-proxy tunnel udp
Last synced: about 1 month ago
JSON representation
A transparent proxy powered by HTTP/3
- Host: GitHub
- URL: https://github.com/damnever/goodog
- Owner: damnever
- License: bsd-3-clause
- Created: 2020-02-16T15:05:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-07T13:18:18.000Z (about 3 years ago)
- Last Synced: 2024-10-03T18:46:32.915Z (about 1 month ago)
- Topics: caddy, http3, tcp, transparent-proxy, tunnel, udp
- Language: Go
- Homepage:
- Size: 296 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## HTTP/3 powered transparent proxy
![what is this](./what-is-this.png)
It takes advantage of [Caddy (v2)](https://caddyserver.com/).
```bash
make build# Start backend
./bin/goodog-backend-caddy start# Generate a hashed password
./bin/goodog-backend-caddy hash-password -algorithm bcrypt -plaintext PASSWORD # -salt "SALT"
# Edit in ./etc/caddy.json
curl localhost:2019/load -X POST -H "Content-Type: application/json" -d @etc/caddy.json# Start frontend
# The full server uri: https://USERNAME:PASSWORD@DOMAIN/?version=v1&compression=snappy
./bin/goodog-frontend -server https://USERNAME:PASSWORD@DOMAIN/?version=v1 -listen :59487
```