File: 1.01.2a/server/base/config.inc.php (View as HTML)

  1: <?php // config.inc.php - FreeNATS Non-DB Stored Configuration
  2: /* -------------------------------------------------------------
  3: This file is part of FreeNATS
  4: 
  5: FreeNATS is (C) Copyright 2008 PurplePixie Systems
  6: 
  7: FreeNATS is free software: you can redistribute it and/or modify
  8: it under the terms of the GNU General Public License as published by
  9: the Free Software Foundation, either version 3 of the License, or
 10: (at your option) any later version.
 11: 
 12: FreeNATS is distributed in the hope that it will be useful,
 13: but WITHOUT ANY WARRANTY; without even the implied warranty of
 14: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 15: GNU General Public License for more details.
 16: 
 17: You should have received a copy of the GNU General Public License
 18: along with Foobar.  If not, see www.gnu.org/licenses
 19: 
 20: For more information see www.purplepixie.org/freenats
 21: -------------------------------------------------------------- */
 22: 
 23: $fnCfg=array();
 24: 
 25: $fnCfg['db.server']		=	"localhost";
 26: $fnCfg['db.username']	=	"root";
 27: $fnCfg['db.password']	=	"";
 28: $fnCfg['db.database']	=	"freenats";
 29: 
 30: // Icons!
 31: $fnIcons=array();
 32: $fnIcons[0]="default_node.gif";
 33: $fnIcons[1]="default_group.gif";
 34: $fnIcons[2]="globe.gif";
 35: $fnIcons[3]="monitor.gif";
 36: $fnIcons[4]="personfile.gif";
 37: $fnIcons[5]="special.gif";
 38: $fnIcons[6]="msw.png";
 39: $fnIcons[7]="workgroup.png";
 40: $fnIcons[8]="atom.png";
 41: $fnIcons[9]="globe2.png";
 42: $fnIcons[10]="g_alarm.png";
 43: $fnIcons[11]="g_pda.png";
 44: $fnIcons[12]="g_bino.png";
 45: $fnIcons[13]="g_cam.png";
 46: 
 47: $fnIcon_DefNode=0;
 48: $fnIcon_DefGroup=1;
 49: 
 50: 
 51: ?>
 52: