You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
937 B
22 lines
937 B
7 years ago
|
<?php
|
||
|
$CONFIG = array(
|
||
|
'instanceid' => 'ocCAFEBABE',
|
||
|
'passwordsalt' => 'SALT',
|
||
|
'secret' => 'SECRET',
|
||
|
'trusted_domains' => array ('nextcloud.example.org', 'localhost'),
|
||
|
'datadirectory' => '@l_prefix@/var/nextcloud/data',
|
||
|
'apps_paths' => array(array('path'=> '@l_prefix@/lib/nextcloud/apps', 'url' => '/apps', 'writable' => true)),
|
||
|
'version' => '@l_version@',
|
||
|
'dbtype' => 'sqlite3',
|
||
|
'mail_domain' => 'example.com',
|
||
|
'mail_smtpmode' => 'smtp',
|
||
|
'mail_smtphost' => '127.0.0.1',
|
||
|
'mail_smtpport' => 25,
|
||
|
'htaccess.RewriteBase' => '/',
|
||
|
'updatechecker' => false,
|
||
|
'loglevel' => 2,
|
||
|
'logfile' => '@l_prefix@/var/nextcloud/log/nextcloud.log',
|
||
|
'tempdirectory' => '@l_prefix@/var/nextcloud/tmp',
|
||
|
'installed' => false,
|
||
|
);
|