This commit is contained in:
Frank Denis 2021-10-29 20:23:41 +02:00
parent 46be8b9662
commit d586c50019

View file

@ -30,8 +30,7 @@ where
e.kind(), e.kind(),
format!( format!(
"Unable to load the certificates [{}]: {}", "Unable to load the certificates [{}]: {}",
certs_path_str, certs_path_str, e
e
), ),
) )
})?); })?);
@ -55,8 +54,7 @@ where
e.kind(), e.kind(),
format!( format!(
"Unable to load the certificate keys [{}]: {}", "Unable to load the certificate keys [{}]: {}",
certs_keys_path_str, certs_keys_path_str, e
e
), ),
) )
})? })?
@ -88,22 +86,26 @@ where
keys.drain(..).map(PrivateKey).collect() keys.drain(..).map(PrivateKey).collect()
}; };
let mut server_config = None; let mut server_config = certs_keys
for certs_key in certs_keys { .into_iter()
let server_config_builder = ServerConfig::builder() .find_map(|certs_key| {
.with_safe_defaults() let server_config_builder = ServerConfig::builder()
.with_no_client_auth(); .with_safe_defaults()
if let Ok(found_config) = server_config_builder.with_single_cert(certs.clone(), certs_key) { .with_no_client_auth();
server_config = Some(found_config); if let Ok(found_config) =
break; server_config_builder.with_single_cert(certs.clone(), certs_key)
} {
} Some(found_config)
let mut server_config = server_config.ok_or_else(|| { } else {
io::Error::new( None
io::ErrorKind::InvalidInput, }
"Unable to find a valid certificate and key", })
) .ok_or_else(|| {
})?; io::Error::new(
io::ErrorKind::InvalidInput,
"Unable to find a valid certificate and key",
)
})?;
server_config.alpn_protocols = vec![b"h2".to_vec(), b"http/1.1".to_vec()]; server_config.alpn_protocols = vec![b"h2".to_vec(), b"http/1.1".to_vec()];
Ok(TlsAcceptor::from(Arc::new(server_config))) Ok(TlsAcceptor::from(Arc::new(server_config)))
} }