aboutsummaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2022-03-10 12:40:59 +0100
committerGitHub <noreply@github.com>2022-03-10 12:40:59 +0100
commit3a0b934f842b01973f7d56f7e46a618a28680cd3 (patch)
tree8102594e96f0176ac75dfc121dddce2d74927bcc /core/js
parent53e42bd30864d49ef2a831a6319798544c4647df (diff)
parent4191a178dd53f2c77b52d845ad802e3d87519564 (diff)
downloadnextcloud-server-3a0b934f842b01973f7d56f7e46a618a28680cd3.tar.gz
nextcloud-server-3a0b934f842b01973f7d56f7e46a618a28680cd3.zip
Merge pull request #31430 from nextcloud/enh/31429/improve-overwrite-cli-url-check
Validate `overwrite.cli.url` to be a url in setup check
Diffstat (limited to 'core/js')
-rw-r--r--core/js/setupchecks.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js
index 3b6c2ef71c1..266f35a9552 100644
--- a/core/js/setupchecks.js
+++ b/core/js/setupchecks.js
@@ -225,7 +225,7 @@
}
if (data.suggestedOverwriteCliURL !== '') {
messages.push({
- msg: t('core', 'If your installation is not installed at the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the "overwrite.cli.url" option in your config.php file to the webroot path of your installation (suggestion: "{suggestedOverwriteCliURL}")', {suggestedOverwriteCliURL: data.suggestedOverwriteCliURL}),
+ msg: t('core', 'Please make sure to set the "overwrite.cli.url" option in your config.php file to the URL that your users mainly use to access this Nextcloud. Suggestion: "{suggestedOverwriteCliURL}". Otherwise there might be problems with the URL generation via cron. (It is possible though that the suggested URL is not the URL that your users mainly use to access this Nextcloud. Best is to double check this in any case.)', {suggestedOverwriteCliURL: data.suggestedOverwriteCliURL}),
type: OC.SetupChecks.MESSAGE_TYPE_WARNING
});
}