postrust-proxy 0.4.0

Reverse proxy for Postrust with load balancing and automatic TLS certificates
Documentation
//! SaaS Domain Management Module
//!
//! Provides multi-tenant domain ownership validation and reverse proxy routing.
//!
//! ## Features
//!
//! - Domain ownership verification (DNS TXT and HTTP challenge)
//! - Multi-tenant API key authentication
//! - Dynamic route management per verified domain
//! - Automatic SSL certificate provisioning via ACME
//! - Manual certificate upload support

pub mod api_keys;
pub mod auth;
pub mod db;
pub mod handlers;
pub mod manager;
pub mod types;
pub mod verification;

pub use api_keys::ApiKeyService;
pub use auth::{AuthContext, AuthType, SaasAuthLayer};
pub use manager::DomainManager;
pub use types::*;
pub use verification::DomainVerificationService;