If in test enviornment, you can disable the SSL check in Routinator by changing the following code in routinator and rebuild it. src/collector/rrdp/http.rs
`#[cfg(not(feature = "native-tls"))]
fn create_builder() -> ClientBuilder {
Client::builder().danger_accept_invalid_certs(true)
}`