Created
November 26, 2014 06:38
-
-
Save hairmare/b8d75af34c213585f543 to your computer and use it in GitHub Desktop.
zabbix config for puppet-zabbix on travis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Zabbix GUI configuration file | |
global $DB; | |
// Valid types are MYSQL, SQLITE3 or POSTGRESQL | |
$DB["TYPE"] = 'MYSQL'; | |
$DB["SERVER"] = 'localhost'; | |
$DB["PORT"] = '0'; | |
// SQLITE3 use full path to file/database: $DB["DATABASE"] = '/var/lib/zabbix/zabbix.sqlite3'; | |
$DB["DATABASE"] = 'zabbix'; | |
$DB["USER"] = 'zabbix'; | |
$DB["PASSWORD"] = 'zabbix'; | |
// 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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment