mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
441 B
Plaintext
21 lines
441 B
Plaintext
7 years ago
|
<?php
|
||
|
// Zabbix GUI configuration file
|
||
|
global $DB;
|
||
|
|
||
|
$DB['TYPE'] = 'MYSQL';
|
||
|
$DB['SERVER'] = 'localhost';
|
||
|
$DB['PORT'] = '0';
|
||
|
$DB['DATABASE'] = '{{ db_name }}';
|
||
|
$DB['USER'] = '{{ db_user }}';
|
||
|
$DB['PASSWORD'] = '{{ db_password }}';
|
||
|
|
||
|
// SCHEMA is relevant only for IBM_DB2 database
|
||
|
$DB['SCHEMA'] = '';
|
||
|
|
||
|
$ZBX_SERVER = 'localhost';
|
||
|
$ZBX_SERVER_PORT = '10051';
|
||
|
$ZBX_SERVER_NAME = '';
|
||
|
|
||
|
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||
|
?>
|