Blame view

php/my_config.php 1.1 KB
16035364   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
<?php
/**
 * @file my_config.php
 * @version $Id: my_config.php 2372 2014-05-21 09:38:38Z myriam $
 *
 *
 */

//AKKA - Path to AMDA_Integration base dir
cfa1d71c   Benjamin Renard   Fix an error with...
10
define('INTEGRATION_BASE_PATH', '/home/benjamin/AMDA-GIT/AMDA_Integration/');
16035364   Benjamin Renard   First commit
11
12

require_once(INTEGRATION_BASE_PATH.'config/AMDAIntegrationConfig.php');
10200969   Roipoussiere   Remove whitespace...
13

16035364   Benjamin Renard   First commit
14
define('CEFLIB', '/usr/local/cef/lib');
8b77c7d0   Benjamin Renard   Fix CDF lib path
15
define('CDFLIB', '/opt/local/lib');
16035364   Benjamin Renard   First commit
16
17
18
define('SYS_LIBS', '/lib:/usr/lib:/usr/local/lib64');
define('SYS_BIN','/bin:/usr/bin/:/usr/local/bin/');

2ce0aff1   Elena.Budnik   DD_WSDL defined i...
19
20
21
//AKKA - For compatibility with IHM
define('BASE_PATH', IHM_SRC_DIR);

16035364   Benjamin Renard   First commit
22
//DD WebServices
2ce0aff1   Elena.Budnik   DD_WSDL defined i...
23
define('INFOSITE', 'http://cdpp.irap.omp.eu/BASE/');
16035364   Benjamin Renard   First commit
24
25
26
27
28
29
30
31
32
33
//log for AmdaUpdate/AmdaInstall
define('log', IHM_SRC_DIR.'LOG');
// User apache
define('APACHE_USER', 'apache');
// Alias for name of AMDA
define('APACHE_ALIAS', '/NEWAMDA-BENJAMIN/');
//email to send errors from AmdaUpdate/AmdaInstall
define('email','brenard@irap.omp.eu');

//DDPATH
44498189   Benjamin Renard   DDClient lib is n...
34
35
36
define('DDBIN','/opt/local/bin/');
define('DDLIB','/opt/local/lib/');

2ce0aff1   Elena.Budnik   DD_WSDL defined i...
37
38
// for updateAmda
define('DD_WSDL','http://amda-dev.irap.omp.eu/BASE/DDService/dd.wsdl');
68ac27e0   Elena.Budnik   Redmine #5227
39
define('TITLE', 'AMDANEW-Test');
16035364   Benjamin Renard   First commit
40
41
42
43

$is64 = true;

?>