*
dsn datasource setting
* tblNamePrefix prefix for table names in the database
* authCookieName secret token cookie name
* 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
* storageUrlPathpath-URL-part of storageServer base dir
* (on central archive side: storage=archive)
* 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
*
*/
$CC_CONFIG = array(
/* ================================================== basic configuration */
'dsn' => array(
'username' => 'ls_dbuser',
'password' => 'ls_dbpassword',
'hostspec' => 'ls_dbserver',
'phptype' => 'pgsql',
'database' => 'ls_database',
),
/* ==================================================== URL configuration */
// on central archive side: archive is the storage !
'storageUrlPath' => 'ls_archiveUrlPath',
'storageXMLRPC' => 'xmlrpc/xrArchive.php',
'storageUrlHost' => 'ls_php_host',
'storageUrlPort' => ls_php_port,
// have to be another remote archive:
#'archiveUrlPath' => 'ls_archiveUrlPath',
#'archiveXMLRPC' => 'xmlrpc/xrArchive.php',
#'archiveUrlHost' => 'ls_php_host',
#'archiveUrlPort' => ls_php_port,
);
?>