<?php /* ********************************************************************************************************* * daloRADIUS - RADIUS Web Platform * Copyright (C) 2007 - Liran Tal <hide@address.com> All Rights Reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ********************************************************************************************************* * Description: * daloRADIUS Configuration File * * Modification Date: * Tue Sep 30 16:29:00 EDT 2008 ********************************************************************************************************* */ $configValues['CONFIG_DB_ENGINE'] = 'mysql'; $configValues['CONFIG_DB_HOST'] = '127.0.0.1'; $configValues['CONFIG_DB_USER'] = 'root'; $configValues['CONFIG_DB_PASS'] = ''; $configValues['CONFIG_DB_NAME'] = 'radius'; $configValues['CONFIG_DB_TBL_RADCHECK'] = 'radcheck'; $configValues['CONFIG_DB_TBL_RADREPLY'] = 'radreply'; $configValues['CONFIG_DB_TBL_RADGROUPREPLY'] = 'radgroupreply'; $configValues['CONFIG_DB_TBL_RADGROUPCHECK'] = 'radgroupcheck'; $configValues['CONFIG_DB_TBL_RADUSERGROUP'] = 'usergroup'; $configValues['CONFIG_DB_TBL_RADNAS'] = 'nas'; $configValues['CONFIG_DB_TBL_RADPOSTAUTH'] = 'radpostauth'; $configValues['CONFIG_DB_TBL_RADACCT'] = 'radacct'; $configValues['CONFIG_DB_TBL_RADIPPOOL'] = 'radippool'; $configValues['CONFIG_DB_TBL_DALOOPERATOR'] = 'operators'; $configValues['CONFIG_DB_TBL_DALORATES'] = 'rates'; $configValues['CONFIG_DB_TBL_DALOHOTSPOTS'] = 'hotspots'; $configValues['CONFIG_DB_TBL_DALOUSERINFO'] = 'userinfo'; $configValues['CONFIG_DB_TBL_DALODICTIONARY'] = 'dictionary'; $configValues['CONFIG_DB_TBL_DALOREALMS'] = 'realms'; $configValues['CONFIG_DB_TBL_DALOPROXYS'] = 'proxys'; $configValues['CONFIG_FILE_RADIUS_PROXY'] = '/etc/freeradius/proxy.conf'; $configValues['CONFIG_PATH_RADIUS_DICT'] = ''; $configValues['CONFIG_PATH_DALO_VARIABLE_DATA'] = '/var/www/daloradius/var'; $configValues['CONFIG_DB_PASSWORD_ENCRYPTION'] = 'cleartext'; $configValues['CONFIG_LANG'] = 'en'; $configValues['CONFIG_LOG_PAGES'] = 'no'; $configValues['CONFIG_LOG_ACTIONS'] = 'no'; $configValues['CONFIG_LOG_QUERIES'] = 'no'; $configValues['CONFIG_DEBUG_SQL'] = 'no'; $configValues['CONFIG_DEBUG_SQL_ONPAGE'] = 'no'; $configValues['CONFIG_LOG_FILE'] = '/tmp/daloradius.log'; $configValues['CONFIG_IFACE_PASSWORD_HIDDEN'] = 'no'; $configValues['CONFIG_IFACE_TABLES_LISTING'] = '25'; $configValues['CONFIG_IFACE_TABLES_LISTING_NUM'] = 'yes'; $configValues['CONFIG_IFACE_AUTO_COMPLETE'] = 'no'; $configValues['CONFIG_MAINT_TEST_USER_RADIUSSERVER'] = '127.0.0.1'; $configValues['CONFIG_MAINT_TEST_USER_RADIUSPORT'] = '1812'; $configValues['CONFIG_MAINT_TEST_USER_NASPORT'] = '0'; $configValues['CONFIG_MAINT_TEST_USER_RADIUSSECRET'] = 'testing123'; ?>