First off thank you for your time whoever is able to help me.
To give a little background I installed Nextcloud using the TrueNAS plugin. It is all running on a static IP. I was able to access the login using the domain and port (ex. cloud.example.com:443). I went into the config.php file and added overwrite parameters. While tinkering with those all of the sudden I am getting the Internal Server Error page. I removed all of the overwrite parameters and cleared cache and cookies on my browser. I am still getting the internal server error. I have also looked at the log that is listed in my config.php file and from what I can tell all of the information is about a few failed login attempts by me.
I have also searched and searched for a solution and so for canāt find one.
Any help is greatly appreciated!
Thanks,
config.php
<?php
+$CONFIG = array (
'apps_paths' =>
array (
0 =>
array (
'path' => '/usr/local/www/nextcloud/apps',
'url' => '/apps',
'writable' => true,
),
1 =>
array (
'path' => '/usr/local/www/nextcloud/apps-pkg',
'url' => '/apps-pkg',
'writable' => true,
),
),
'logfile' => '/var/log/nextcloud/nextcloud.log',
'passwordsalt' => 'REDACTED',
'secret' => 'REDACTED',
'trusted_domains' =>
array (
0 => 'localhost',
1 => 'static IP:80',
2 => 'cloud.website.com:80',
3 => 'static IP:443',
4 => 'cloud.website.com:443',
5 => 'cloud.website.com',
),
'datadirectory' => '/usr/local/www/nextcloud/data',
'dbtype' => 'mysql',
'version' => '21.0.0.18',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'REDACTED',
'dbpassword' => 'REDACTED',
'installed' => true,
'instanceid' => 'REDACTED',
'overwriteprotocol' => "https",
'overwrite.cli.url' => 'https://cloud.website.com:8443',
'overwritehost' => 'cloud.website.com',
'trusted_proxies' =>
array (
0 => '10.x.x.x:81', #LAN IP to Virtual Mechine
),
);
nextcloud.log
only logs of me login into nextcloud before the internal error
Edited config.php based on information from j-ed.