Server crash after upgrade from version 24 to 25.0.2

Hello,
I am new to this forum. I have a server under Unraid, and Nextcloud which has been working well for 5 months. I just upgraded from version 24 to 25.0.2, but nothing works anymore.

My server tells me that the docker works fine. When I go to the URL, I get a black page with an error message: HTTP ERROR 500.

Could you please help me?

Thanks

Nextcloud version (eg, 20.0.5): 24.0.8
Operating system and version (eg, Ubuntu 20.04): Unraid 6.11.1
Apache or nginx version (eg, Apache 2.4.25): nginx v2.9.18
PHP version (eg, 7.4):

The issue you are facing:

Is this the first time you’ve seen this error? (Y/N):Y

The output of your config.php file in /path/to/nextcloud (I remove any identifiable information!):

I Had customise the 443 port with 449. Can this cause problem ?

<?php
$CONFIG = array (
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'datadirectory' => '/data',
  'instanceid' => '',
  'passwordsalt' => '',
  'secret' => '',
  'trusted_domains' => 
  array (
    0 => '192.168.0.100:449',
    1 => 'MYDOMAIN',
  ),
  'dbtype' => 'mysql',
  'version' => '24.0.8.2',
  'overwrite.cli.url' => 'MYDOMAIN',
  'dbname' => 'nextcloud',
  'dbhost' => '192.168.0.100:3306',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'nextcloud',
  'dbpassword' => 'PWD',
  'installed' => true,
  'mail_smtpmode' => 'smtp',
  'mail_sendmailmode' => 'smtp',
  'mail_domain' => 'gmail.com',
  'mail_smtphost' => 'smtp.gmail.com',
  'mail_smtpport' => '587',
  'mail_smtpsecure' => 'tls',
  'maintenance' => false,
  'theme' => '',
  'loglevel' => 2,
  'mail_from_address' => 'MYADRESS',
  'mail_smtpauthtype' => 'LOGIN',
  'updater.secret' => 'MYSECRET',
  'updater.release.channel' => 'stable',
  'mail_smtpauth' => 1,
  'mail_smtpname' => 'MYEMAIL',
  'mail_smtppassword' => 'MYEMAILPWD',
);
  1. If I try to access with my url ‘URLDOMAIN’, I have 500 error.
  2. If i try to access with IP ‘192.168.0.100:449’, I have a warning message (no https), upon acceptance, I have a white screen.

Here my Docker Log, I have this message:

**** The following active confs have different version dates than the samples that are shipped. ****


-------------------------------------
          _         ()
         | |  ___   _    __
         | | / __| | |  /  \
         | | \__ \ | | | () |
         |_| |___/ |_|  \__/


Brought to you by linuxserver.io
-------------------------------------

To support LSIO projects visit:
https://www.linuxserver.io/donate/
-------------------------------------
GID/UID
-------------------------------------

User uid:    99
User gid:    100
-------------------------------------

using keys found in /config/keys
**** The following active confs have different version dates than the samples that are shipped. ****
**** This may be due to user customization or an update to the samples. ****
**** You should compare the following files to the samples in the same folder and update them. ****
**** Use the link at the top of the file to view the changelog. ****
/config/nginx/nginx.conf
/config/nginx/site-confs/default.conf

[custom-init] No custom files found, skipping...
[ls.io-init] done.

I find the solution in Unraid Forum :
https://forums.unraid.net/topic/48383-support-linuxserverio-nextcloud/?do=findComment&comment=1208085

I tried to trigger the docker update on the terminal:

root@T30:~# docker exec -it nextcloud updater.phar

Thank you