postrust-proxy 0.4.0

Reverse proxy for Postrust with load balancing and automatic TLS certificates
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;