First commit

This commit is contained in:
Pierre Hubert
2018-05-08 14:25:32 +02:00
parent e6d954d962
commit db00eb57af
5 changed files with 82 additions and 0 deletions

13
overwriteAPIconfig.php Normal file
View File

@ -0,0 +1,13 @@
<?php
//Custom database configuration
$config->set("mysql", array(
"host" => "localhost",
"database" => "comunic",
"user" => "comunic",
"password" => "comunic"
));
//Storage configuration
$config->set("storage_path", "/data/user_data/");
$config->set("storage_url", "http://".$_SERVER["HTTP_HOST"]."/user_data/");