This is a reverse proxy server.
The data that is sent through this server goes to another server and back to the client.
It's configurable via config.toml
file.
- Install Rust
- Start the server:
$ cargo run --release
- Send HTTP requests through the server address to forward them to a remote server:
# this will return the response from `127.0.0.1:8081/hello` server endpoint.
$ curl 127.0.0.1:8080/hello