Next Cloud Config file

emptyinbox

Cadet
Joined
Jun 13, 2022
Messages
1
I am trying to get past the chrome privacy error and everything I read suggests i modify config.php to add the ip to the local host. I have done a fair bit of research and I keep seeing articles referring to the config.php file. However when I ls I only see a file called truenas.config.php. Am I in the wrong directory? the truenas.config.php has a lot less lines of code. Just wondering what I have done wrong here? Here is how I have the code at the moment:

I added

Code:
'trusted_domains' =>
  array (
           0 => 'localhost'
        1 => '10.10.50.132'
),


to:

Code:
<?php

$CONFIG = array(

  'one-click-instance' => true,

  'one-click-instance.user-limit' => 100,

  'memcache.local' => '\\OC\\Memcache\\APCu',

  'memcache.distributed' => '\OC\Memcache\Redis',

  'memcache.locking' => '\OC\Memcache\Redis',

  'redis' => array(

    'host' => 'localhost',

  ),



'trusted_domains' =>

  array (

           0 => 'localhost'

        1 => '10.10.50.132'

),

 'Logfile' => '/var/log/nextcloud.log'

);
 
Top