diff options
author | Simon L <szaimen@e.mail.de> | 2023-06-20 22:54:48 +0200 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-06-21 13:28:38 +0000 |
commit | b63817382541e507a5eeaef96807498a78e3e506 (patch) | |
tree | c998a4072b86b8766adc9f2b645cb95e40afaedf /core | |
parent | 44aa756c48cd9d1aaeced20ed8ed275825d85f36 (diff) | |
download | nextcloud-server-b63817382541e507a5eeaef96807498a78e3e506.tar.gz nextcloud-server-b63817382541e507a5eeaef96807498a78e3e506.zip |
adjust admin setup check to increase warning to set up https
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to 'core')
-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 { |