nextcloud: add server.config.php that adds the serverid by using the hostname as key

Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
Simon L.
2026-04-15 13:17:50 +02:00
parent 32f728e7b1
commit 1e5eb87582

View File

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