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

  1: <?php // config.inc.php - FreeNATS Non-DB Stored Configuration
  2: $fnCfg=array();
  3: 
  4: $fnCfg['db.server']		=	"localhost";
  5: $fnCfg['db.username']	=	"root";
  6: $fnCfg['db.password']	=	"marvin";
  7: $fnCfg['db.database']	=	"freenats";
  8: 
  9: // Icons!
 10: $fnIcons=array();
 11: $fnIcons[0]="default_node.gif";
 12: $fnIcons[1]="default_group.gif";
 13: $fnIcons[2]="globe.gif";
 14: $fnIcons[3]="monitor.gif";
 15: $fnIcons[4]="personfile.gif";
 16: $fnIcons[5]="special.gif";
 17: 
 18: $fnIcon_DefNode=0;
 19: $fnIcon_DefGroup=1;
 20: 
 21: 
 22: ?>