77 lines
3.1 KiB
PHP
77 lines
3.1 KiB
PHP
<?
|
|
/*------------------------------------------------------------------------------
|
|
|
|
Copyright (c) 2004 Media Development Loan Fund
|
|
|
|
This file is part of the LiveSupport project.
|
|
http://livesupport.campware.org/
|
|
To report bugs, send an e-mail to bugs@campware.org
|
|
|
|
LiveSupport is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
LiveSupport is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with LiveSupport; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
Author : $Author: tomas $
|
|
Version : $Revision: 1.2 $
|
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/archiveServer/var/conf.php,v $
|
|
|
|
------------------------------------------------------------------------------*/
|
|
$config = array(
|
|
'dsn' => array(
|
|
'username' => 'test',
|
|
'password' => 'test',
|
|
'hostspec' => 'localhost',
|
|
# 'hostspec' => '127.0.0.1', // for bad resolver
|
|
'phptype' => 'pgsql',
|
|
'database' => 'LiveSupport-test',
|
|
),
|
|
'tblNamePrefix' => 'as_',
|
|
'authCookieName'=> 'assid',
|
|
'RootNode' => 'RootNode',
|
|
'tmpRootPass' => 'q',
|
|
'objtypes' => array(
|
|
'RootNode' => array('Folder'),
|
|
'Storage' => array('Folder', 'File', 'Replica'),
|
|
'Folder' => array('Folder', 'File', 'Replica'),
|
|
'File' => array(),
|
|
'Replica' => array(),
|
|
),
|
|
'allowedActions'=> array(
|
|
'RootNode' => array('classes', 'subjects'),
|
|
'Folder' => array('editPrivs', 'write', 'read'),
|
|
'File' => array('editPrivs', 'write', 'read'),
|
|
'Replica' => array('editPrivs', 'write', 'read'),
|
|
'_class' => array('editPrivs', 'write', 'read'),
|
|
),
|
|
'allActions' => array(
|
|
'editPrivs', 'write', 'read', 'classes', 'subjects'
|
|
),
|
|
'storageDir' => dirname(getcwd()).'/stor',
|
|
'bufferDir' => dirname(getcwd()).'/stor/buffer',
|
|
'transDir' => dirname(getcwd()).'/trans',
|
|
'accessDir' => dirname(getcwd()).'/access',
|
|
|
|
// on central archive side storage=archive
|
|
'storageUrlPath' => '/livesupport/modules/archiveServer/var',
|
|
'storageXMLRPC' => 'xmlrpc/xrArchive.php',
|
|
'storageUrlHost' => 'localhost',
|
|
'storageUrlPort' => 80,
|
|
// only for returning right URLs:
|
|
'archiveUrlPath' => '/livesupport/modules/archiveServer/var',
|
|
'archiveXMLRPC' => 'xmlrpc/xrArchive.php',
|
|
'archiveUrlHost' => 'localhost',
|
|
'archiveUrlPort' => 80,
|
|
|
|
);
|
|
?>
|