Blame view

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

72cddaa0   Benjamin Renard   Add template for ...
8
9
//This is a template file.
//Copy this file in php/my_config.php and replace all placeholders (included between "{:" and ":}" flags) by your own values
2ce0aff1   Elena.Budnik   DD_WSDL defined i...
10

72cddaa0   Benjamin Renard   Add template for ...
11
12
//Path to AMDA_Integration base dir
define('INTEGRATION_BASE_PATH', '{:INTEGRATION_BASE_PATH:}');
16035364   Benjamin Renard   First commit
13
//DD WebServices
72cddaa0   Benjamin Renard   Add template for ...
14
define('DDSERVICE', '{:DDSERVICE:}');
16035364   Benjamin Renard   First commit
15
// User apache
72cddaa0   Benjamin Renard   Add template for ...
16
define('APACHE_USER', '{:APACHE_USER:}');
16035364   Benjamin Renard   First commit
17
// Alias for name of AMDA
39408a48   Elena.Budnik   info on APACHE_ALIAS
18
define('APACHE_ALIAS', '{:APACHE_ALIAS:}'); // APACHE_ALIAS with TWO slashes "/AMDA/" or ONE slash  "/"
16035364   Benjamin Renard   First commit
19
//email to send errors from AmdaUpdate/AmdaInstall
72cddaa0   Benjamin Renard   Add template for ...
20
21
22
define('email', '{:email:}');
//IHM title
define('TITLE', '{:TITLE:}');
7baca0ef   Elena.Budnik   user special sett...
23
24
// real upload_max_filesize is defined in /etc/php.ini : ini_get('upload_max_filesize')
// here for additional flexibility
72cddaa0   Benjamin Renard   Add template for ...
25
define('MAX_UPLOADED_FILESIZE',{:MAX_UPLOADED_FILESIZE:}); // in bytes !!!
7ac3e07e   Elena.Budnik   do not check user...
26

ba35574d   Benjamin Renard   Uniformize proxy ...
27
// To define only if you are behind a proxy
72cddaa0   Benjamin Renard   Add template for ...
28
29
define('PROXY_HOST','{:PROXY_HOST:}');
define('PROXY_USERPWD','{:PROXY_USERPWD:}');
99ae8744   Benjamin Renard   Use config variab...
30

72cddaa0   Benjamin Renard   Add template for ...
31
32
33
define('NEWMETA', '{:NEWMETA:}');
define('AMDA_SPASE_INTERFACE', '{:AMDA_SPASE_INTERFACE:}');
define('AMDAINTERNALDIR', '{:AMDAINTERNALDIR:}');
2d0ca0ba   Benjamin Renard   Load environment ...
34

ff01af8d   NathanaĆ«l Jourdane   Add script to gen...
35
36
define('REST_API_URL', '{:REST_API_URL:}');
define('API_DOC_PATH', '{:API_DOC_PATH:}');
2cfa3a1a   Benjamin Renard   Give the possibil...
37
38
39

// Show log in browser console about execution time for a request
// define('LOG_EXEC_TIME', FALSE);
16035364   Benjamin Renard   First commit
40
?>