warpdrive_proxy/proxy/
mod.rs

1//! Proxy module - HTTP request proxying with Pingora
2//!
3//! This module implements the core HTTP reverse proxy functionality using Pingora's
4//! ProxyHttp trait. It handles request forwarding, upstream connection management,
5//! and X-Forwarded header injection.
6
7pub mod handler;
8
9pub use handler::WarpDriveProxy;