38 lines
1.4 KiB
PHP
38 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
## Check http://www.observium.org/docs/config_options/ for documentation of possible settings
|
||
|
|
||
|
## It's recommended that settings are edited in the web interface at /settings/ on your observium installation.
|
||
|
## Authentication and Database settings must be hardcoded here because they need to work before you can reach the web-based configuration interface
|
||
|
|
||
|
// Database config --- This MUST be configured
|
||
|
$config['db_extension'] = 'mysqli';
|
||
|
$config['db_host'] = '192.168.86.10';
|
||
|
$config['db_user'] = 'observium';
|
||
|
$config['db_pass'] = '25d38c2b7ffa43d94621b578';
|
||
|
$config['db_name'] = 'observium';
|
||
|
|
||
|
// Base directory
|
||
|
#$config['install_dir'] = "/opt/observium";
|
||
|
|
||
|
// Default community list to use when adding/discovering
|
||
|
$config['snmp']['community'] = array("public");
|
||
|
|
||
|
// Authentication Model
|
||
|
$config['auth_mechanism'] = "mysql"; // default, other options: ldap, http-auth, please see documentation for config help
|
||
|
|
||
|
// Enable alerter
|
||
|
// $config['poller-wrapper']['alerter'] = TRUE;
|
||
|
|
||
|
//$config['web_show_disabled'] = FALSE; // Show or not disabled devices on major pages.
|
||
|
|
||
|
// Set up a default alerter (email to a single address)
|
||
|
//$config['email']['default'] = "user@your-domain";
|
||
|
//$config['email']['from'] = "Observium <observium@your-domain>";
|
||
|
//$config['email']['default_only'] = TRUE;
|
||
|
|
||
|
// End config.php
|
||
|
|
||
|
$config['fping'] = "/usr/sbin/fping";
|
||
|
$config['housekeeping']['rrd']['age'] = 5184000;
|