45 lines
1.8 KiB
PHP
45 lines
1.8 KiB
PHP
<?php
|
|
/*
|
|
Author: Riccardo Di Dato
|
|
Creation Date: 07/gen/2016
|
|
*/
|
|
|
|
// $dbconn = new DatabaseConnection();
|
|
// $dbconn->dbname = "cbs";
|
|
// $dbconn->dbtype = "mysql";
|
|
// $dbconn->location = "localhost";
|
|
// $dbconn->username = "root";
|
|
// $dbconn->password = "root";
|
|
$database = new stdClass();
|
|
$database->dbName = "fdn2";
|
|
// $database->connectionString = "mongodb://10.0.0.2:27017";
|
|
$database->connectionString = "mongodb://127.0.0.1:27017";
|
|
|
|
$currentSystem = new stdClass();
|
|
$currentSystem->storageBaseDir = "/home/asdynamics/storage"; // Il path con storage ecc in cui mettere i contenuti dell'applicazione (immagini, dump db ecc)
|
|
$currentSystem->privateBaseDir = "/home/asdynamics/private"; // Il path in cui inserire la cartella con lib, task, binari ecc
|
|
$currentSystem->tmpBaseDir = "/tmp/asdynamics";
|
|
$currentSystem->logBaseDir = "/var/log/asdynamics"; // Il path dei log....
|
|
$currentSystem->xSendFileDir = "/tmp/xsend";
|
|
|
|
// $currentSystem->safeStorage = "/home/cbs/storage";
|
|
|
|
$currentSystem->apache = new StdClass();
|
|
$currentSystem->apache->user = "var-www";
|
|
$currentSystem->apache->group = "var-www";
|
|
$currentSystem->apache->workdir = "/var/www"; // Il path in cui inserire la cartella con le pagine html
|
|
|
|
$currentSystem->remoteLocationPath = "http://10.0.0.249/fdn2/";
|
|
|
|
$backupSystem = new stdClass();
|
|
$backupSystem->account = "40a911e14db8ad6faf0a0e7385e7c267";
|
|
$backupSystem->passphrase = "a54af48c2ec44bba903666b6d12290750178154a6965c9165d3b387e7fd0f14c5f2d62cb93f468be640d469c80f1260feed3ad98f5f52d52c045b0487e59981bf365f4037f6c7cb93572cdd5d20daeb8185afcc65dba1bd2067829f827d9b795451f6e5e8fafe5e1fbe29675feb93e7d208a6b53a14df5aeec62d97fbf34d56a";
|
|
|
|
// $config->locations = new stdClass();
|
|
|
|
// $config->application->applicationInterfacePath = "/tnc15";
|
|
|
|
// $config->application->systemTmp = "/tmp";
|
|
|
|
?>
|