- Add test folder
[xhtml-compiler.git] / config.default.php
blob99a187f7cec477c1f880ae189d2f1f7623a7fa98
1 <?php
3 // after making changes to config.php, run
4 // htaccess-builder to put your changes into effect
6 // allowed directories, use 0: non-recursive; 1: recursive, must
7 // have trailing slash. This is relative to the parent directory, since
8 // the CMS is neatly cordoned off into a subdirectory and shouldn't
9 // actually contain any HTML files
10 $allowed_dirs = array('' => 0);
12 // if given a directory, what index should we normalize to?
13 $directory_index = 'index.html';
15 // allowed characters in directory and file names, not including extension
16 $filename_chars = 'a-zA-Z0-9\-_';