Skip to content

Commit 5fb7ea2

Browse files
authored
Merge pull request #38915 from nextcloud/enh/noid/increase-https-warning
adjust admin setup check to increase warning to configure https
2 parents 5474387 + d25d5d3 commit 5fb7ea2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/js/setupchecks.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -741,10 +741,10 @@
741741
}
742742
} else if (!/(?:^(?:localhost|127\.0\.0\.1|::1)|\.onion)$/.exec(window.location.hostname)) {
743743
messages.push({
744-
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}.')
744+
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!')
745745
.replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + tipsUrl + '">')
746746
.replace('{linkend}', '</a>'),
747-
type: OC.SetupChecks.MESSAGE_TYPE_WARNING
747+
type: OC.SetupChecks.MESSAGE_TYPE_ERROR
748748
});
749749
}
750750
} else {

0 commit comments

Comments
 (0)