postrust-proxy 0.2.3

High-performance reverse proxy module for Postrust with load balancing and automatic TLS
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! TLS and ACME certificate management.

mod cert_store;

#[cfg(feature = "acme")]
mod acme;

pub use cert_store::CertificateStore;

#[cfg(feature = "acme")]
pub use acme::AcmeManager;