https://github.com/williamlsh/http-proxy
HTTP proxy
https://github.com/williamlsh/http-proxy
Last synced: 2 months ago
JSON representation
HTTP proxy
- Host: GitHub
- URL: https://github.com/williamlsh/http-proxy
- Owner: williamlsh
- License: mit
- Created: 2022-10-20T05:14:16.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-08T15:45:28.000Z (about 1 year ago)
- Last Synced: 2025-01-08T17:00:54.083Z (about 1 year ago)
- Language: Rust
- Size: 62.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HTTP Proxy
> A modified and usable version of https://github.com/hyperium/hyper/blob/master/examples/http_proxy.rs.
Efficient HTTP proxy server in pure rust with minimum dependencies.
## Build binary
```sh
$ cargo build -r
```
## Run proxy
```sh
$ ./target/release/http-proxy 127.0.0.1 1800
Listening on http://127.0.0.1:1800
```