<?php
// System Configuration
$sys_config['name'] = 'Groundwork Fruity';
$sys_config['version'] = '1.0 Release Candidate 2';
$sys_config['logos_path'] = '/usr/local/www/nagios/images/logos';	// Must be symlinked or a copy of the logos directory from nagios

$sys_config['network_desc'] = "example.com";

// Set to true if you want to run a nagios pre-flight check to validate config before committing
$sys_config['nagios_preflight'] = true;
$sys_config['nagios_path'] = '/usr/local/bin/nagios';	// The path to the Nagios binary
$sys_config['nagios_start'] = 'sudo /usr/local/etc/rc.d/nagios start';	// The script to run to start Nagios
$sys_config['nagios_stop'] = 'sudo /usr/local/etc/rc.d/nagios stop';		// The script to run to stop Nagios
$sys_config['temp_dir'] = '/tmp';				// Where to temporarily export a set of configs for preflight to validate

// MySQL Database Connection Configuration
$sitedb_config['host'] = 'localhost';				// Address to the database server
$sitedb_config['username'] = 'fruity';				// Username to access the database
$sitedb_config['password'] = 'fruity';				// Password to access the database
$sitedb_config['database'] = 'fruity';				// The database name
$sitedb_config['dbserv']	= 'mysql';			// The database driver (for now, use mysql)

// Web Application Path Configuration
$path_config['doc_root'] = '/';	// The URL path to fruity (include trailing slash)
$path_config['image_root'] = $path_config['doc_root'] . 'images/';	// Where images are stored (leave for default)

define("AUTH_MODULES_URL_PATH", $path_config['doc_root'] . "modules/auth/");	// No need to modify this if installed in /fruity/ in url.
define("SESSION_SECRET", $sys_config['name']."-".$sys_config['version'].":".$sys_config['network_desc']);				// A session key to identify this session to PHP.
?>
