We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3d6528 commit 94569f8Copy full SHA for 94569f8
crates/common/src/config/signer.rs
@@ -81,11 +81,14 @@ pub struct SignerConfig {
81
#[serde(default = "default_u32::<SIGNER_JWT_AUTH_FAIL_TIMEOUT_SECONDS_DEFAULT>")]
82
pub jwt_auth_fail_timeout_seconds: u32,
83
84
+ /// Path to the TLS certificates directory.
85
+ /// It must contain a `cert.pem` and a `key.pem` file
86
+ #[serde(default = "default_certs_path")]
87
+ pub tls_certificates: PathBuf,
88
+
89
/// Inner type-specific configuration
90
#[serde(flatten)]
91
pub inner: SignerType,
- #[serde(default = "default_certs_path")]
- pub tls_certificates: PathBuf,
92
}
93
94
impl SignerConfig {
0 commit comments