*
dsn datasource setting
* tblNamePrefix prefix for table names in the database
* authCookieName secret token cookie name
* StationPrefsGr name of station preferences group
* AllGr name of 'all users' group
* storageDir main directory for storing binary media files
* bufferDir directory for temporary files
* transDir directory for incomplete transferred files
* accessDir directory for symlinks to accessed files
* isArchive local/central flag
* validate enable/disable validator
* storageUrlPathpath-URL-part of storageServer base dir
* storageXMLRPCXMLRPC server script address relative to storageUrlPath
* storageUrlHost, storageUrlPorthost and port of storageServer
* archiveUrlPathpath-URL-part of archiveServer base dir
* archiveXMLRPCXMLRPC server script address relative to archiveUrlPath
* archiveUrlHost, archiveUrlPorthost and port of archiveServer
* archiveAccountLogin, archiveAccountPass account info
* for login to archive
*
*/
$CC_CONFIG = array(
/* ================================================== basic configuration */
'dsn' => array(
'username' => 'ls_dbuser',
'password' => 'ls_dbpassword',
'hostspec' => 'ls_dbserver',
'phptype' => 'pgsql',
'database' => 'ls_database',
),
/* ==================================================== URL configuration */
'storageUrlPath' => 'ls_storageUrlPath',
'storageXMLRPC' => 'xmlrpc/xrLocStor.php',
'storageUrlHost' => 'ls_php_host',
'storageUrlPort' => ls_php_port,
/* ================================================ archive configuration */
'archiveUrlPath' => 'ls_storageUrlPath',
'archiveXMLRPC' => 'xmlrpc/xrLocStor.php',
'archiveUrlHost' => 'ls_php_host',
'archiveUrlPort' => ls_php_port,
'archiveAccountLogin' => 'root',
'archiveAccountPass' => 'q',
/* ============================================== scheduler configuration */
'schedulerUrlPath' => 'ls_scheduler_urlPrefix',
'schedulerXMLRPC' => 'ls_scheduler_xmlRpcPrefix',
'schedulerUrlHost' => 'ls_scheduler_host',
'schedulerUrlPort' => ls_scheduler_port,
'schedulerPass' => 'ls_scheduler_storage_pass',
/* =================================================== cron configuration */
//'cronUserName' => 'www-data',
'cronUserName' => $developer_name,
);
?>