Web Interface Not Loading

Hi there,

I’m still in the middle of installing my Nextcloud server (probably a week since my last post here) and I’ve ran into a bit of an issue with the web interface not loading whatsoever. I had an issue earlier where I’d enter the IP of my Nextcloud server and would get an ‘Internal Server Error,’ which was soon fixed. However, despite fixing that ‘Internal Server Error’ error, my web interface is now not loading whatsoever. I have a feeling it still has something to do with trusted domains array, but unsure on what else it could be.

This is my config file’s code:

<?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' => false,
    ),
  ),
  'logfile' => '/var/log/nextcloud/nextcloud.log',
  'memcache.local' => '\OC\Memcache\APCu',
  'instanceid' => 'ocy4qsadkxhl',
  'passwordsalt' => '44RcdZYDK/TNVGLyCxVPT67M88sjhJ',
  'secret' => 'aCLhfzgCaLGyfVp5upS4mXpP2sduzZw6FGsAZtUwhpduUZji',
  'trusted_domains' =>
  array (
    0 => '192.168.0.21',
    1 => 'cloud.mydomain.com',
  ),
  'datadirectory' => '/mnt/data',
  'dbtype' => 'mysql',
  'version' => '14.0.4.2',
  'overwrite.cli.url' => 'http://192.168.0.21',
  'dbname' => 'nextcloud',
  'dbhost' => 'localhost:/tmp/mysql.sock',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'nextcloud_admin',
  'dbpassword' => '********',
  'installed' => true,
);

Cheers in advance

Try

'overwrite.cli.url' => 'http://cloud.mydomain.com',

Yeah I’ve tried that but my issue still persists. Could the issue be that Nextcloud now doesn’t exist as an installed plugin on FreeNAS? Last week, it was there and everything was fine. I’ve just checked and it isn’t installed, so I reinstalled it. However, it’s created a jail called ‘nextcloud_2’, given it the ip of ‘192.168.0.36’, and a type value of ‘pluginv2’

I’m not sure what’s caused this as I haven’t touched it since last week