<?php

/*	database connection details
 ******************************/
$db['host'] = "localhost";
$db['user'] = "und3rnetworks_ipam";
$db['pass'] = "und3r@@DB";
$db['name'] = "und3rnetworks_ipam";
$db['port'] = 3306;

/**
 * temporary table type to create slave subnets table
 * (MEMORY, InnoDB)
 ******************************/
$db['tmptable_engine_type'] = "MEMORY";

# resolveIPaddresses.php script parameters
$config['resolve_emptyonly']           = false;      // if true it will only update the ones without DNS entry!
$config['resolve_verbose']             = true;       // verbose response - prints results, cron will email it to you!

/**
 * php debugging on/off
 *
 * true  = SHOW all php errors
 * false = HIDE all php errors
 ******************************/
$debugging = true;

/**
 *	manual set session name for auth
 *	increases security
 *	optional
 */
$phpsessname = "phpipamdevel_15";

/**
 * Session storage - files or database
 *
 * @var string
 */
$session_storage = "files";

/**
 *	BASE definition if phpipam
 * 	is not in root directory (e.g. /phpipam/)
 *
 *  Also change
 *	RewriteBase / in .htaccess
 ******************************/
if(!defined('BASE'))
define('BASE', "/");

/**
 * Multicast unique mac requirement - section or vlan
 */
if(!defined('MCUNIQUE'))
define('MCUNIQUE', "section");

/**
 * Google MAPs API key
 */
$gmaps_api_key         = "AIzaSyAuEV2lou56SYI6VXCGPVg3truAl20s38I";
$gmaps_api_geocode_key = "AIzaSyB-s2fuH9PHXQE19mpr0dy4b7PlTGXtkYs";

/**
 * Permit private subpages - private apps under /app/tools/custom/<custom_app_name>/index.php
 */
$private_subpages = array("prefixes", "nmi", "firewall_rules", "SPVSS_IP", "telnet", "checkpoint");

/**
 * Allow API calls over HTTP
 *
 * @var bool
 */
$api_allow_unsafe = false;

/**
 * General tweaks
 */
$config['logo_width'] = 220;
$config['requests_public'] = true;
$config['split_ip_custom_fields'] = false;                  // Show custom fields in separate table on right when editing IP address
