Blame view

php/my_config.php 861 Bytes
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 $
 *
16035364   Benjamin Renard   First commit
6
7
8
 */

//AKKA - Path to AMDA_Integration base dir
a22ecd3b   Benjamin Renard   Keep only necessa...
9
define('INTEGRATION_BASE_PATH', '/home/brenard/AMDA-GIT/AMDA_Integration/');
2ce0aff1   Elena.Budnik   DD_WSDL defined i...
10

16035364   Benjamin Renard   First commit
11
//DD WebServices
b7741da9   Benjamin Renard   Define DDService ...
12
define('DDSERVICE', 'http://amdadev.fr/DDService/');
16035364   Benjamin Renard   First commit
13
14
15
// User apache
define('APACHE_USER', 'apache');
// Alias for name of AMDA
a22ecd3b   Benjamin Renard   Keep only necessa...
16
define('APACHE_ALIAS', '');
16035364   Benjamin Renard   First commit
17
//email to send errors from AmdaUpdate/AmdaInstall
7ac3e07e   Elena.Budnik   do not check user...
18
define('email','ebudnik@irap.omp.eu');
16035364   Benjamin Renard   First commit
19

68ac27e0   Elena.Budnik   Redmine #5227
20
define('TITLE', 'AMDANEW-Test');
16035364   Benjamin Renard   First commit
21

7baca0ef   Elena.Budnik   user special sett...
22
23
24
// real upload_max_filesize is defined in /etc/php.ini : ini_get('upload_max_filesize')
// here for additional flexibility
define('MAX_UPLOADED_FILESIZE',30000000); // in bytes !!!
7ac3e07e   Elena.Budnik   do not check user...
25

ba35574d   Benjamin Renard   Uniformize proxy ...
26
27
28
// To define only if you are behind a proxy
define('PROXY_HOST','and-fgt-ha.akka.eu:9090');
define('PROXY_USERPWD','benjamin.renard:Ocu4teickpa&da');
2d0ca0ba   Benjamin Renard   Load environment ...
29

16035364   Benjamin Renard   First commit
30
?>