mirror of
https://github.com/jimeh/dlist.git
synced 2026-02-19 07:56:41 +00:00
- edited init script so it will only look for specific file names. "index.html", "index.php", so on, instead of running glob() on "index.*". - moved internal timer to seperate exec file. git-svn-id: file:///Users/jimeh/Desktop/dlist/trunk@7 a5845835-ea0f-0410-a762-dd0bfe9bfde8
38 lines
440 B
PHP
38 lines
440 B
PHP
<?php
|
|
|
|
/*
|
|
|
|
dList's main configuration file.
|
|
|
|
*/
|
|
|
|
|
|
$config = array(
|
|
|
|
|
|
// Main settings
|
|
|
|
'dlist_url' => '/dlist/',
|
|
'index_files' => array('index.html', 'index.php', 'index.htm'),
|
|
'debug' => true,
|
|
|
|
|
|
// File system settings
|
|
|
|
'show_hidden' => false,
|
|
|
|
// Display settings
|
|
|
|
'template' => 'simple',
|
|
'iconset' => 'osx',
|
|
'allow_override' => true,
|
|
|
|
// Server settings
|
|
|
|
'default_scheme' => 'http',
|
|
|
|
|
|
|
|
);
|
|
|
|
?>
|