├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cmd └── proxy │ └── main.go ├── config └── fallback.go ├── go.mod ├── go.sum └── rldphttp ├── address.go ├── client.go ├── http.go ├── server.go └── stream.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | build 3 | *.json 4 | payments-db/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/README.md -------------------------------------------------------------------------------- /cmd/proxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/cmd/proxy/main.go -------------------------------------------------------------------------------- /config/fallback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/config/fallback.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/go.sum -------------------------------------------------------------------------------- /rldphttp/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/rldphttp/address.go -------------------------------------------------------------------------------- /rldphttp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/rldphttp/client.go -------------------------------------------------------------------------------- /rldphttp/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/rldphttp/http.go -------------------------------------------------------------------------------- /rldphttp/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/rldphttp/server.go -------------------------------------------------------------------------------- /rldphttp/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonutils/reverse-proxy/HEAD/rldphttp/stream.go --------------------------------------------------------------------------------