feat: initial commit
This commit is contained in:
commit
f7e873865b
16 changed files with 273 additions and 0 deletions
24
templates/zabbix/zabbix.conf.php.j2
Normal file
24
templates/zabbix/zabbix.conf.php.j2
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
// zabbix settings
|
||||
$ZBX_SERVER_NAME = '{{ zabbix_web_name }}';
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// database - general
|
||||
$DB['TYPE'] = 'MYSQL';
|
||||
$DB['SERVER'] = 'localhost';
|
||||
$DB['PORT'] = '0';
|
||||
$DB['DATABASE'] = '{{ zabbix_server_db_name }}';
|
||||
$DB['USER'] = '{{ zabbix_server_db_user }}';
|
||||
$DB['PASSWORD'] = '{{ zabbix_server_db_pass }}';
|
||||
|
||||
// database - tls
|
||||
$DB['ENCRYPTION'] = false;
|
||||
$DB['KEY_FILE'] = '';
|
||||
$DB['CERT_FILE'] = '';
|
||||
$DB['CA_FILE'] = '';
|
||||
$DB['VERIFY_HOST'] = false;
|
||||
$DB['CIPHER_LIST'] = '';
|
||||
|
||||
// database - other
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
Loading…
Add table
Add a link
Reference in a new issue