Source
22
22
// Vault configuration. Used if database credentials are stored in Vault secrets manager.
23
23
$DB['VAULT_URL'] = '';
24
24
$DB['VAULT_DB_PATH'] = '';
25
25
$DB['VAULT_TOKEN'] = '';
26
26
27
27
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
28
28
// This option is enabled by default for new Zabbix installations.
29
29
// For upgraded installations, please read database upgrade notes before enabling this option.
30
30
$DB['DOUBLE_IEEE754'] = true;
31
31
32
+
// Uncomment and set to desired values to override Zabbix hostname/IP and port.
32
33
// $ZBX_SERVER = '';
33
34
// $ZBX_SERVER_PORT = '';
35
+
34
36
$ZBX_SERVER_NAME = '';
35
37
36
38
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
37
39
38
40
// Uncomment this block only if you are using Elasticsearch.
39
41
// Elasticsearch url (can be string if same url is used for all types).
40
42
//$HISTORY['url'] = [
41
43
// 'uint' => 'http://localhost:9200',
42
44
// 'text' => 'http://localhost:9200'
43
45
//];