├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── pr-check.yml │ ├── release-check.yml │ └── tests.yml ├── .gitignore ├── .licenserc.yaml ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── licenses ├── LICENSE-Golang ├── LICENSE-fasthttp-reverse-proxy └── LICENSE-gorilla-websocket ├── proxy_client_behavior.go ├── reverse_proxy.go ├── reverse_proxy_test.go ├── ws_reverse_proxy.go ├── ws_reverse_proxy_option.go ├── ws_reverse_proxy_option_test.go └── ws_reverse_proxy_test.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/release-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/.github/workflows/release-check.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/go.sum -------------------------------------------------------------------------------- /licenses/LICENSE-Golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/licenses/LICENSE-Golang -------------------------------------------------------------------------------- /licenses/LICENSE-fasthttp-reverse-proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/licenses/LICENSE-fasthttp-reverse-proxy -------------------------------------------------------------------------------- /licenses/LICENSE-gorilla-websocket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/licenses/LICENSE-gorilla-websocket -------------------------------------------------------------------------------- /proxy_client_behavior.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/proxy_client_behavior.go -------------------------------------------------------------------------------- /reverse_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/reverse_proxy.go -------------------------------------------------------------------------------- /reverse_proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/reverse_proxy_test.go -------------------------------------------------------------------------------- /ws_reverse_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/ws_reverse_proxy.go -------------------------------------------------------------------------------- /ws_reverse_proxy_option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/ws_reverse_proxy_option.go -------------------------------------------------------------------------------- /ws_reverse_proxy_option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/ws_reverse_proxy_option_test.go -------------------------------------------------------------------------------- /ws_reverse_proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hertz-contrib/reverseproxy/HEAD/ws_reverse_proxy_test.go --------------------------------------------------------------------------------