Hello,
I am running 27.0.0 on an unRaid server and when syncing to local clients from the main server, the docker image crashes. I can see immediate cessation of activity in the Load and Memory graphs and the client reports that it cannot connect. The only thing that I can do is restart the container and then wait for it to crash again, in 5 minutes or in half an hour, no rime or reason.
Nextcloud version 27.0.0
Operating system and version unRaid 6.1.12
PHP version _ 8.2.7
The output of your config.php file in /path/to/nextcloud
<?php
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\APCu',
'datadirectory' => '/data',
'instanceid' => 'oce72utbxb9g',
'passwordsalt' => '*************',
'secret' => '*************',
'trusted_domains' =>
array (
0 => '192.168.1.130:444',
1 => 'nextcloud.myserver.com',
),
'trusted_proxies' =>
array (
0 => 'swag',
),
'dbtype' => 'mysql',
'version' => '27.0.0.8',
'overwrite.cli.url' => 'https://nextcloud.myserver.com/',
'overwritehost' => 'nextcloud.myserver.com',
'overwriteprotocol' => 'https',
'dbname' => 'nextcloud',
'dbhost' => '192.168.1.130:3306',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'user',
'dbpassword' => 'password',
'installed' => true,
'mail_smtpmode' => 'smtp',
'mail_smtpsecure' => 'ssl',
'mail_sendmailmode' => 'smtp',
'mail_from_address' => 'user',
'mail_domain' => 'yahoo.com',
'mail_smtpauthtype' => 'LOGIN',
'mail_smtphost' => 'smtp.mail.yahoo.com',
'mail_smtpport' => '465',
'mail_smtpauth' => 1,
'mail_smtpname' => 'user',
'mail_smtppassword' => '***********',
'updater.release.channel' => 'stable',
'maintenance' => false,
'loglevel' => 2,
'default_phone_region' => 'US',
'filelocking.enabled' => 'true',
'memcache.locking' => '\\OC\\Memcache\\APCu',
);