We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 304c99b commit 9a04621Copy full SHA for 9a04621
3 files changed
src/config.rs
@@ -59,6 +59,14 @@ pub struct Config {
59
60
#[arg(long, env = "DEFGUARD_GRPC_BIND_ADDRESS")]
61
pub grpc_bind_address: Option<IpAddr>,
62
+
63
+ // TODO: On different platforms this may be different
64
+ #[arg(
65
+ long,
66
+ env = "DEFGUARD_PROXY_CERT_DIR",
67
+ default_value = "/etc/defguard/certs"
68
+ )]
69
+ pub cert_dir: PathBuf,
70
}
71
72
#[derive(thiserror::Error, Debug)]
0 commit comments