<?php

$config = array(
    'db' => array(
        'dsn' => 'pgsql:dbname=bugtracker;host=localhost;port=5432',
        'username' => 'red',
        'password' => 'red'
    ),
    'urls' => array(
        'base' => 'http://' . $_SERVER['SERVER_NAME']
    )
);

if($config['urls']['base'] == 'http://localhost') {
    $config['urls']['base'] = 'http://' . $_SERVER['HTTP_HOST'];
}

define("LIBRARY_PATH", realpath(dirname(__FILE__) . '/library'));
define("TEMPLATES_PATH", realpath(dirname(__FILE__) . '/templates'));

?>