Creati nuovi banner lunghi Aumentate numero notizie ansa Aumentate numero notizie cronaca in homepage fix mobile articolo per show player video modifica amministrazione per show player mobile
52 lines
2.0 KiB
PHP
52 lines
2.0 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->user = "test";
|
|
$database->pass = "test";
|
|
$database->useAuth = false;
|
|
$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.64/fdn2/";
|
|
$currentSystem->remoteLocationPath = "http://192.168.1.129/fdn2/";
|
|
|
|
$backupSystem = new stdClass();
|
|
$backupSystem->account = "40a911e14db8ad6faf0a0e7385e7c267";
|
|
$backupSystem->passphrase = "a54af48c2ec44bba903666b6d12290750178154a6965c9165d3b387e7fd0f14c5f2d62cb93f468be640d469c80f1260feed3ad98f5f52d52c045b0487e59981bf365f4037f6c7cb93572cdd5d20daeb8185afcc65dba1bd2067829f827d9b795451f6e5e8fafe5e1fbe29675feb93e7d208a6b53a14df5aeec62d97fbf34d56a";
|
|
|
|
$cbs2 = new stdClass();
|
|
$cbs2->keyfile = "id_rsa_cbs_local";
|
|
$cbs2->serverPort = "22";
|
|
|
|
// $config->locations = new stdClass();
|
|
|
|
// $config->application->applicationInterfacePath = "/tnc15";
|
|
|
|
// $config->application->systemTmp = "/tmp";
|
|
|
|
?>
|