dep updates/fix #696

This commit is contained in:
renovate[bot]
2024-03-10 04:01:07 +00:00
committed by Zoey
parent d91c4593c3
commit 9d0574edb7
4 changed files with 21 additions and 19 deletions

View File

@@ -20,18 +20,14 @@ const internalHost = {
let combined_data = _.assign({}, existing_data, data);
if (!combined_data.certificate_id) {
combined_data.ssl_forced = false;
combined_data.http2_support = false;
combined_data.ssl_forced = false;
combined_data.hsts_subdomains = false;
}
if (!combined_data.ssl_forced) {
combined_data.hsts_enabled = false;
}
if (!combined_data.hsts_enabled) {
combined_data.hsts_subdomains = false;
}
return combined_data;
},