mirror of
https://github.com/pierre42100/Comunic-DockerSingleContainer
synced 2024-11-23 12:39:22 +00:00
13 lines
343 B
PHP
13 lines
343 B
PHP
<?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/"); |