Private
Public Access
1
0

fix(enroll): skip TLS validation during enrollment bootstrap to allow certificate acquisition

This commit is contained in:
2026-05-17 22:20:48 +00:00
parent 286f9059e2
commit f57d92406f
2 changed files with 4 additions and 4 deletions

View File

@ -64,7 +64,7 @@ async fn main() -> Result<()> {
);
// Load configuration
let config = match AppConfig::load(&args.config) {
let config = match AppConfig::load(&args.config, args.enroll.is_some()) {
Ok(cfg) => {
info!(
port = cfg.server.port,