Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion apps/settings/lib/SetupChecks/ServerIdConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ public function run(): SetupResult {
if ($serverid === PHP_INT_MIN) {
return SetupResult::info(
$this->l10n->t(
'Server identifier isn’t configured. It is recommended if your Nextcloud instance is running on several PHP servers. Add a server ID in your configuration.',
'The ``serverid`` parameter is not configured. '
. 'By default, Nextcloud uses a fallback based on the server hostname. '
. 'The fallback is safe for a standalone setup.'
. 'However, if you are running Nextcloud on multiple servers, you plan to expand your setup in the future, or simply want to suppress this message, you should explicitly set a unique integer ``serverid`` (0–1023) for each server. '
),
$linkToDoc,
);
Expand Down
Loading