Guest User

config obser

a guest
Feb 9th, 2020
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. <?php
  2.  
  3. ## Check http://www.observium.org/docs/config_options/ for documentation of possible settings
  4.  
  5. ## It's recommended that settings are edited in the web interface at /settings/ on your observium installation.
  6. ## Authentication and Database settings must be hardcoded here because they need to work before you can reach the web-based configuration interface
  7.  
  8. // Database config --- This MUST be configured
  9. $config['db_extension'] = 'mysqli';
  10. $config['db_host'] = 'localhost';
  11. $config['db_user'] = 'observium';
  12. $config['db_pass'] = 'S8und123';
  13. $config['db_name'] = 'observiumdb';
  14.  
  15. // Base directory
  16. #$config['install_dir'] = "/opt/observium";
  17.  
  18. // Default community list to use when adding/discovering
  19. $config['snmp']['community'] = array("public");
  20.  
  21. // Authentication Model
  22. $config['auth_mechanism'] = "mysql"; // default, other options: ldap, http-auth, please see documentation for config help
  23.  
  24. // Enable alerter
  25. // $config['poller-wrapper']['alerter'] = TRUE;
  26.  
  27. //$config['web_show_disabled'] = FALSE; // Show or not disabled devices on major pages.
  28.  
  29. // Set up a default alerter (email to a single address)
  30. //$config['email']['default'] = "user@your-domain";
  31. //$config['email']['from'] = "Observium <observium@your-domain>";
  32. //$config['email']['default_only'] = TRUE;
  33.  
  34.  
  35. $config['frontpage']['device_status']['ports'] = true; // Show the down ports
  36. // End config.php
Advertisement
Add Comment
Please, Sign In to add comment