forked from phpipam/phpipam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.docker.php
84 lines (73 loc) · 2.65 KB
/
config.docker.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/**
* Import ENV settings for Docker containers.
* ln -s config.docker.php config.php
*/
function file_env($var, $default) {
$env_filename = getenv($var.'_FILE');
if ($env_filename===false) {
return getenv($var) ?: $default;
} elseif (is_readable($env_filename)) {
return trim(file_get_contents($env_filename), "\n\r");
} else {
// no i10n, gettext not yet loaded
error_log("$var:$env_filename can not be read");
return $default;
}
}
/**
* Path to access phpipam in site URL, http:/url/BASE/
* If not defined it will be discovered and set automatically.
*
* BASE definition should end with a trailing slash "/"
* Examples:
*
* If you access the login page at http://company.website/ = define('BASE', "/");
* If you access the login page at http://company.website/phpipam/ = define('BASE', "/phpipam/");
* If you access the login page at http://company.website/ipam/ = define('BASE', "/ipam/");
*
*/
getenv('IPAM_BASE') ? define('BASE', getenv('IPAM_BASE')) : false;
/**
* Import default values
*/
require('config.dist.php');
/**
* database connection details
******************************/
$db['host'] = file_env('IPAM_DATABASE_HOST', $db['host']);
$db['user'] = file_env('IPAM_DATABASE_USER', $db['user']);
$db['pass'] = file_env('IPAM_DATABASE_PASS', $db['pass']);
$db['name'] = file_env('IPAM_DATABASE_NAME', $db['name']);
$db['port'] = file_env('IPAM_DATABASE_PORT', $db['port']);
$db['webhost'] = file_env('IPAM_DATABASE_WEBHOST', $db['webhost']);
/**
* proxy connection details
******************************/
$proxy_enabled = file_env('PROXY_ENABLED', $proxy_enabled);
$proxy_server = file_env('PROXY_SERVER', $proxy_server);
$proxy_port = file_env('PROXY_PORT', $proxy_port);
$proxy_user = file_env('PROXY_USER', $proxy_user);
$proxy_pass = file_env('PROXY_PASS', $proxy_pass);
$proxy_use_auth = file_env('PROXY_USE_AUTH', $proxy_use_auth);
$offline_mode = filter_var(file_env('OFFLINE_MODE', $offline_mode), FILTER_VALIDATE_BOOLEAN);
/**
* php debugging on/off
*
* true = SHOW all php errors
* false = HIDE all php errors
******************************/
$debugging = filter_var(file_env('IPAM_DEBUG', $debugging), FILTER_VALIDATE_BOOLEAN);
/**
* Cookie SameSite settings ("None", "Lax"=Default, "Strict")
* - "Strict" increases security
* - "Lax" required for SAML2, some SAML topologies may require "None".
* - "None" requires HTTPS (implies "Secure;")
*/
$cookie_samesite = file_env('COOKIE_SAMESITE', $cookie_samesite);
/**
* Session storage - files or database
*
* @var string
*/
$session_storage = "database";