Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
192 - 1
<?php
2
// Zabbix GUI configuration file.
3
 
4
$DB['TYPE']				= 'MYSQL';
5
$DB['SERVER']			= 'localhost';
6
$DB['PORT']				= '0';
7
$DB['DATABASE']			= 'zabbix';
8
$DB['USER']				= 'zabbix';
9
$DB['PASSWORD']			= 'xibbaz';
10
 
11
// Schema name. Used for PostgreSQL.
12
$DB['SCHEMA']			= '';
13
 
14
// Used for TLS connection.
15
$DB['ENCRYPTION']		= false;
16
$DB['KEY_FILE']			= '';
17
$DB['CERT_FILE']		= '';
18
$DB['CA_FILE']			= '';
19
$DB['VERIFY_HOST']		= false;
20
$DB['CIPHER_LIST']		= '';
21
 
22
// Vault configuration. Used if database credentials are stored in Vault secrets manager.
23
$DB['VAULT_URL']		= '';
24
$DB['VAULT_DB_PATH']	= '';
25
$DB['VAULT_TOKEN']		= '';
26
 
27
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
28
// This option is enabled by default for new Zabbix installations.
29
// For upgraded installations, please read database upgrade notes before enabling this option.
30
$DB['DOUBLE_IEEE754']	= true;
31
 
32
$ZBX_SERVER				= '10.192.25.241';
33
$ZBX_SERVER_PORT		= '10051';
34
$ZBX_SERVER_NAME		= 'homeserver8';
35
 
36
$IMAGE_FORMAT_DEFAULT	= IMAGE_FORMAT_PNG;
37
 
38
// Uncomment this block only if you are using Elasticsearch.
39
// Elasticsearch url (can be string if same url is used for all types).
40
//$HISTORY['url'] = [
41
//	'uint' => 'http://localhost:9200',
42
//	'text' => 'http://localhost:9200'
43
//];
44
// Value types stored in Elasticsearch.
45
//$HISTORY['types'] = ['uint', 'text'];
46
 
47
// Used for SAML authentication.
48
// Uncomment to override the default paths to SP private key, SP and IdP X.509 certificates, and to set extra settings.
49
//$SSO['SP_KEY']			= 'conf/certs/sp.key';
50
//$SSO['SP_CERT']			= 'conf/certs/sp.crt';
51
//$SSO['IDP_CERT']		= 'conf/certs/idp.crt';
52
//$SSO['SETTINGS']		= [];