Update stuff

This commit is contained in:
Alois 2026-07-29 23:31:36 +02:00
commit 82f7ea1184
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24

View file

@ -88,11 +88,6 @@ fn validate(config: &Config) -> Result<(), ConfigError> {
"check interval and timeout must be greater than zero".into(), "check interval and timeout must be greater than zero".into(),
)); ));
} }
if !config.admin_address.is_loopback() {
return Err(ConfigError::Invalid(
"admin_address must be a loopback address".into(),
));
}
if config.certificate.is_empty() || config.private_key.is_empty() { if config.certificate.is_empty() || config.private_key.is_empty() {
return Err(ConfigError::Invalid( return Err(ConfigError::Invalid(
"certificate and private_key are required".into(), "certificate and private_key are required".into(),