arbiter-proxy 0.0.22

Async HTTP reverse proxy with middleware chain architecture
Documentation
1
2
3
4
5
6
7
8
9
//! Arbiter Proxy: an async HTTP reverse proxy with a middleware chain architecture.
//!
//! Requests flow through a configurable sequence of middleware before being
//! forwarded to an upstream server. Configuration is loaded from TOML.

pub mod config;
pub mod middleware;
pub mod proxy;
pub mod server;