From: Simon L Date: Tue, 20 Jun 2023 20:54:48 +0000 (+0200) Subject: adjust admin setup check to increase warning to set up https X-Git-Tag: v28.0.0beta1~857^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d25d5d34f730571f1305d9361fec55a9371409af;p=nextcloud-server.git adjust admin setup check to increase warning to set up https Signed-off-by: Simon L --- diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 6260292db43..4fb020e44a3 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -741,10 +741,10 @@ } } else if (!/(?:^(?:localhost|127\.0\.0\.1|::1)|\.onion)$/.exec(window.location.hostname)) { messages.push({ - msg: t('core', 'Accessing site insecurely via HTTP. You are strongly advised to set up your server to require HTTPS instead, as described in the {linkstart}security tips ↗{linkend}.') + msg: t('core', 'Accessing site insecurely via HTTP. You are strongly advised to set up your server to require HTTPS instead, as described in the {linkstart}security tips ↗{linkend}. Without it some important web functionality like "copy to clipboard" or "service workers" will not work!') .replace('{linkstart}', '') .replace('{linkend}', ''), - type: OC.SetupChecks.MESSAGE_TYPE_WARNING + type: OC.SetupChecks.MESSAGE_TYPE_ERROR }); } } else {