<?php

/*******************************************************************

  WARNING !!!

  Be very careful not to expose files that might allow
  a "walking the filesystem" attack, or files that allow
  attackers to potentially find and read files they shouldn't.

*******************************************************************/


/**************************************
  Allowed Filetypes

  Please add all the filetypes you would like to make visible on 
  your index.php. Use double quotes around each filetype extension 
  and separate each extension by using commas.

  ex.  $properties["allowed_filetypes"] = array("folder", ".html", ".jpg", ".gif");
**************************************/

$properties["allowed_filetypes"] = array(".txt", ".xml", ".html");




/**************************************
  Hiding Files

  There may be some files that are included in your allowed filetypes, but
  still should not be visible to the public.  Use this property to 
  hide those files on your index.php page. Use double quotes around 
  each file's name and separate each file name by using commas.

  ex.  $properties["hidden_files"] = array("award_draft.html", "annual_projection.xls");
**************************************/

$properties["hidden_files"] = array("index.php");


##################################################
##  TEMPLATE PAGES - LEAVE ALONE
##################################################
require($_SERVER["DOCUMENT_ROOT"] . "/templates/indexing/default.php");
##################################################

?>
