Merge pull request #7910 from nextcloud/enh/noid/add-server-id

nextcloud: add `server.config.php` that adds the serverid by using the hostname as key
This commit is contained in:
Simon L.
2026-04-16 11:07:02 +02:00
committed by GitHub

View File

@@ -0,0 +1,4 @@
<?php
$CONFIG = array (
'serverid' => crc32(gethostname()) % 512,
);