Blame view

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

//AKKA - Path to AMDA_Integration base dir
a2c44674   Elena.Budnik   wsdl correct
10
define('INTEGRATION_BASE_PATH', '/home/myriam/AMDA_20170601/AMDA_Integration/');
16035364   Benjamin Renard   First commit
11
12

require_once(INTEGRATION_BASE_PATH.'config/AMDAIntegrationConfig.php');
a2c44674   Elena.Budnik   wsdl correct
13
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
define('SYS_LIBS', '/lib:/usr/lib:/usr/local/lib64');
a2c44674   Elena.Budnik   wsdl correct
17
define('SYS_BIN','/bin:/usr/bin/:/usr/local/bin/');
16035364   Benjamin Renard   First commit
18

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
01502c7f   Elena.Budnik   CDF outputformat
23
//define('INFOSITE', 'http://apus.irap.omp.eu/NEWAMDA/BASE/');
7baca0ef   Elena.Budnik   user special sett...
24
define('INFOSITE', 'http://amda-dev.irap.omp.eu/BASE/');
16035364   Benjamin Renard   First commit
25
26
27
28
29
//log for AmdaUpdate/AmdaInstall
define('log', IHM_SRC_DIR.'LOG');
// User apache
define('APACHE_USER', 'apache');
// Alias for name of AMDA
01502c7f   Elena.Budnik   CDF outputformat
30
define('APACHE_ALIAS', '/');
16035364   Benjamin Renard   First commit
31
//email to send errors from AmdaUpdate/AmdaInstall
a2c44674   Elena.Budnik   wsdl correct
32
define('email','mbouchemit@irap.omp.eu');
16035364   Benjamin Renard   First commit
33
34

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

2ce0aff1   Elena.Budnik   DD_WSDL defined i...
38
39
// for updateAmda
define('DD_WSDL','http://amda-dev.irap.omp.eu/BASE/DDService/dd.wsdl');
01502c7f   Elena.Budnik   CDF outputformat
40

a2c44674   Elena.Budnik   wsdl correct
41
42
define('TITLE', 'AMDADEV-Test');
$SERVER_NAME = "amdadev.irap.omp.eu";
16035364   Benjamin Renard   First commit
43

7baca0ef   Elena.Budnik   user special sett...
44
45
// real upload_max_filesize is defined in /etc/php.ini : ini_get('upload_max_filesize')
// here for additional flexibility
01502c7f   Elena.Budnik   CDF outputformat
46
define('MAX_UPLOADED_FILESIZE',100000000); // in bytes !!!
7ac3e07e   Elena.Budnik   do not check user...
47

16035364   Benjamin Renard   First commit
48
49
50
$is64 = true;

?>