12345678910111213141516171819202122232425262728293031323334 |
- <?php
- $CONFIG = array (
- 'htaccess.RewriteBase' => '/',
- 'memcache.local' => '\\OC\\Memcache\\APCu',
- 'apps_paths' =>
- array (
- 0 =>
- array (
- 'path' => '/var/www/html/apps',
- 'url' => '/apps',
- 'writable' => false,
- ),
- 1 =>
- array (
- 'path' => '/var/www/html/custom_apps',
- 'url' => '/custom_apps',
- 'writable' => true,
- ),
- ),
- 'passwordsalt' => 'LUWBpbDfP6KE5ee4vsMi/LJk/ky1ty',
- 'secret' => '1M5SVPb8cSp7aVSKQss+ha52hGSlAkq3SoGhr4gKQG7I49zF',
- 'trusted_domains' =>
- array (
- 0 => 'localhost',
- 1 => 'nextcloud_server',
- ),
- 'datadirectory' => '/var/www/html/data',
- 'dbtype' => 'sqlite3',
- 'version' => '17.0.0.9',
- 'overwrite.cli.url' => 'http://localhost',
- 'dbname' => 'nextcloud',
- 'installed' => true,
- 'instanceid' => 'occakkp6o8zz',
- );
|