Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 578 Bytes

File metadata and controls

22 lines (16 loc) · 578 Bytes

Simple HTTP proxy demo

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.

Gif demo

Try it out!

  1. Install Rust
  2. Start the server:
$ cargo run --release
  1. 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