sbe_proxy/lib.rs
1//! sbe-proxy: Domain-filtering HTTP CONNECT proxy for the sbe sandbox.
2//!
3//! Runs outside the sandbox, filtering outbound connections by domain allowlist.
4//! The sandboxed process is forced through this proxy via HTTP_PROXY/HTTPS_PROXY
5//! environment variables, while SBPL blocks all direct outbound connections.
6
7pub mod allowlist;
8pub mod error;
9pub mod server;
10
11pub use server::{ProxyConfig, ProxyEndpoint, ProxyServer};