diff options
author | Simon L <szaimen@e.mail.de> | 2023-06-21 04:41:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-21 04:41:14 +0200 |
commit | 5fb7ea22be0814eb8e1e1e0f2df6032ef53983cc (patch) | |
tree | 7351de461b257b054921ae5108cc768ec8847d84 | |
parent | 54743872099b286258537fe91d2c10ec1ea6a169 (diff) | |
parent | d25d5d34f730571f1305d9361fec55a9371409af (diff) | |
download | nextcloud-server-5fb7ea22be0814eb8e1e1e0f2df6032ef53983cc.tar.gz nextcloud-server-5fb7ea22be0814eb8e1e1e0f2df6032ef53983cc.zip |
Merge pull request #38915 from nextcloud/enh/noid/increase-https-warning
adjust admin setup check to increase warning to configure https
-rw-r--r-- | core/js/setupchecks.js | 4 |
1 files changed, 2 insertions, 2 deletions
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}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + tipsUrl + '">') .replace('{linkend}', '</a>'), - type: OC.SetupChecks.MESSAGE_TYPE_WARNING + type: OC.SetupChecks.MESSAGE_TYPE_ERROR }); } } else { |