Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1280 → Rev 1281

/asterisk-stats/trunk/config.php-dist
0,0 → 1,37
<?php
####################################################
# AstWeb - Asterisk PBX Dynamic config environment #
# #
# Written by: Jamie Carl #
# jazz@funkynerd.com #
# #
# Copyright (C) 2006 Achieve Corp #
# #
# Licence: This software is licenced under the #
# GNU/GPL. Please see licence.txt for #
# more information. #
####################################################
 
/* Do NOT touch this! */
if ( !defined('IN_ASTWEB') ) {
die("Hacking attempt");
}
 
/* Configuration settings */
 
$tpl_dir = 'templates';
$img_dir = 'images';
 
$site_title = 'Asterisk Web Interface';
$site_style = 'astweb.css';
 
$includes = 'includes';
 
$db_type = 'PGSQL';
$db_host = 'localhost';
$db_user = 'astweb';
$db_password = 'password';
$db_database = 'asterisk';
 
 
?>