Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/server/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ use crate::server::{
tls::{CertificateResolverFactory, GeneratingCertificateResolverFactory},
};

const DEFAULT_CA_PRIVATE_KEY: &str = include_str!("../../certs/ca.key");
const DEFAULT_CA_CERTIFICATE: &str = include_str!("../../certs/ca.pem");
pub const DEFAULT_CA_PRIVATE_KEY: &str = include_str!("../../certs/ca.key");
pub const DEFAULT_CA_CERTIFICATE: &str = include_str!("../../certs/ca.pem");

/// The Builder streamlines the configuration process, automatically setting up defaults and
/// handling dependency injection for the mock server. It consolidates configuration parameters,
Expand Down