Releases: siddharth178/revproxy
Releases · siddharth178/revproxy
first usable version
first release that is usable as reverse proxy.
extract attached file revproxy-v0.1-bin.tar.gz in a directory. run your platform specific binary from that folder.
sudo ./revproxy.linux -backend=<host:port> -crt=<path to certificate file> -key=<path to key file>
e.g.
sudo ./revproxy.mac -backend=demo.io:80 -crt=/tmp/crt -key=/tmp/key
linux executable is built using following command
GOOS=linux GOARCH=amd64 go build -v
mac executable is built using following command
GOOS=darwin GOARCH=amd64 go build -v
go version used to test and build
go version go1.6 linux/amd64