warpdrive_proxy/
lib.rs

1//! WarpDrive - High-performance HTTP proxy with PostgreSQL coordination
2//!
3//! A Rust-based HTTP proxy built on Pingora, featuring:
4//! - Distributed caching with Redis
5//! - PostgreSQL-based coordination via LISTEN/NOTIFY
6//! - TLS with automatic ACME certificate provisioning
7//! - X-Sendfile support
8//! - Gzip compression
9//! - Request/response filtering
10//! - Process supervision for upstream applications
11//! - Graceful shutdown with signal handling
12
13pub mod acme;
14pub mod cache;
15pub mod config;
16pub mod metrics;
17pub mod metrics_server;
18pub mod middleware;
19pub mod postgres;
20pub mod process;
21pub mod proxy;
22pub mod router;
23pub mod server;
24pub mod shutdown;