Quellcode durchsuchen

[Fix #26726] wrong warning when running HTTP instance

Signed-off-by: Guillaume Virlet <github@virlet.org>
tags/v23.0.0beta1
Guillaume Virlet vor 3 Jahren
Ursprung
Commit
ec38cf3b53
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      core/js/setupchecks.js

+ 1
- 1
core/js/setupchecks.js Datei anzeigen

@@ -487,7 +487,7 @@
type: OC.SetupChecks.MESSAGE_TYPE_WARNING
})
}
if (window.location.protocol === 'http:' && data.reverseProxyGeneratedURL.split('/')[0] !== 'https:') {
if (window.location.protocol === 'https:' && data.reverseProxyGeneratedURL.split('/')[0] !== 'https:') {
messages.push({
msg: t('core', 'You are accessing your instance over a secure connection, however your instance is generating insecure URLs. This most likely means that you are behind a reverse proxy and the overwrite config variables are not set correctly. Please read {linkstart}the documentation page about this ↗{linkend}.')
.replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.reverseProxyDocs + '">')

Laden…
Abbrechen
Speichern