mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
More renames
git-svn-id: http://www.observium.org/svn/observer/trunk@1329 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@ -6,14 +6,14 @@
|
||||
$config['db_host'] = "localhost";
|
||||
$config['db_user'] = "USERNAME";
|
||||
$config['db_pass'] = "PASSWORD";
|
||||
$config['db_name'] = "observer";
|
||||
$config['db_name'] = "observernms";
|
||||
|
||||
### Locations
|
||||
$config['install_dir'] = "/opt/observer";
|
||||
$config['install_dir'] = "/opt/observernms";
|
||||
$config['html_dir'] = $config['install_dir'] . "/html";
|
||||
$config['rrd_dir'] = "/opt/observer/rrd";
|
||||
$config['rrd_dir'] = "/opt/observernms/rrd";
|
||||
$config['temp_dir'] = "/tmp";
|
||||
$config['observer_log'] = $config['install_dir'] . "/observer.log";
|
||||
$config['observer_log'] = $config['install_dir'] . "/observernms.log";
|
||||
|
||||
### Enable the below to use rrdcached. be sure rrd_dir is within the rrdcached dir
|
||||
### and that your web server has permission to talk to rrdcached.
|
||||
@ -31,7 +31,7 @@ $config['auth_ldap_server'] = "ldap.yourserver.com";
|
||||
$config['auth_ldap_port'] = 389;
|
||||
$config['auth_ldap_prefix'] = "uid=";
|
||||
$config['auth_ldap_suffix'] = ",ou=People,dc=example,dc=com";
|
||||
$config['auth_ldap_group'] = "cn=observer,ou=groups,dc=example,dc=com";
|
||||
$config['auth_ldap_group'] = "cn=observernms,ou=groups,dc=example,dc=com";
|
||||
|
||||
### Location of executables
|
||||
|
||||
@ -49,7 +49,7 @@ $config['branding'] = array(
|
||||
|
||||
# The default branding.
|
||||
'default' => array(
|
||||
'base_url' => "http://observer.example.com",
|
||||
'base_url' => "http://observernms.example.com",
|
||||
'mydomain' => "example.com",
|
||||
'page_title' => "ObserverNMS",
|
||||
'title_image' => "images/observer-logo.gif",
|
||||
@ -62,8 +62,8 @@ $config['branding'] = array(
|
||||
),
|
||||
|
||||
# Example branding for a specifc URL.
|
||||
'observer.branding.com' => array(
|
||||
'base_url' => "http://observer.branding.com",
|
||||
'observernms.branding.com' => array(
|
||||
'base_url' => "http://observernms.branding.com",
|
||||
'mydomain' => "branding.com",
|
||||
'page_title' => "ObserverNMS",
|
||||
'title_image' => "images/observer-logo.gif",
|
||||
@ -77,8 +77,8 @@ $config['branding'] = array(
|
||||
);
|
||||
|
||||
### E-Mail information.
|
||||
$config['email_default'] = "observer@example.com";
|
||||
$config['email_from'] = "Observer <observer@example.com>";
|
||||
$config['email_default'] = "observernms@example.com";
|
||||
$config['email_from'] = "ObserverNMS <observernms@example.com>";
|
||||
$config['email_headers'] = "From: " . $config['email_from'] . "\r\n";
|
||||
|
||||
### List of networks to allow scanning-based discovery
|
||||
|
Reference in New Issue
Block a user