mirror of
https://github.com/nextcloud/server.git
synced 2026-02-12 07:14:44 -05:00
It´s automatically search in the owncloud folder and in the parent folder. override with an option in config.php is also possible
20 lines
326 B
PHP
Executable file
20 lines
326 B
PHP
Executable file
<?php
|
|
|
|
define("DEBUG", true);
|
|
|
|
$CONFIG = array(
|
|
"installed" => false,
|
|
"dbtype" => "sqlite",
|
|
"dbname" => "owncloud",
|
|
"dbuser" => "",
|
|
"dbpassword" => "",
|
|
"dbhost" => "",
|
|
"dbtableprefix" => "",
|
|
"forcessl" => false,
|
|
"enablebackup" => false,
|
|
"theme" => "",
|
|
"3rdpartyroot" => "",
|
|
"3rdpartyurl" => "",
|
|
// "datadirectory" => ""
|
|
);
|
|
?>
|