mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
11 lines
253 B
Markdown
11 lines
253 B
Markdown
## HTTP Full proxy example
|
|
|
|
This proxy forwards all types of requests, including ones with body, to another HTTP server,
|
|
returning the response to the client.
|
|
|
|
To start:
|
|
|
|
``` shell
|
|
cargo run <listen addr> <listen port> <forward addr> <forward port>
|
|
```
|