This is simple Reverse proxy cli tool written in GO.
This project is a simple implementation of reverse proxy written in GO.
- Create a simple reverse proxy
- Routing traffic from host to the target host
go install github.com/secopsbear/revproxy@latestGenerate an executable revproxy.exe for windows environment.
env GOOS=windows GOARCH=amd64 go build -o revproxy.exe -ldflags "-s -w"go build -o revproxy -ldflags "-s -w"./revproxy -lhost 127.0.0.1 -lport 9011 -thost 127.0.0.1 -tport 9008$ ./revproxy help
-help
Print default help
-lhost string
Listening Host IP Address
-lport int
Listening port
-thost string
Pointing to target Host IP Address
-tport int
Pointing to the target port
If you found an issue or would like to submit an improvement to this project, please submit an issue using the issues tab above.
