1
0
mirror of https://github.com/lrsjng/h5ai.git synced 2025-08-08 14:56:35 +02:00

Minor changes.

This commit is contained in:
Lars Jung
2012-09-14 19:16:11 +02:00
parent 1aec23008e
commit 3cd11139a2
3 changed files with 15 additions and 13 deletions

View File

@@ -3,7 +3,7 @@
"version": "0.22-dev",
"description": "a modern HTTP web server index",
"url": "http://larsjung.de/h5ai/",
"author": "Lars Jung <lrsjng@gmail.com>",
"author": "Lars Jung",
"license": "MIT",
"repository": {
"type": "git",

View File

@@ -1,5 +1,6 @@
/*
{{pkg.name}} {{pkg.version}}
{{pkg.url}}
Configuration
options, types and localization

View File

@@ -1,27 +1,28 @@
<?php
/*
* {{pkg.name}} {{pkg.version}}
*
* PHP Configuration
* filesystem paths and file ignore rules
*/
{{pkg.name}} {{pkg.version}}
{{pkg.url}}
PHP Configuration
filesystem paths and file ignore rules
*/
global $H5AI_CONFIG;
$H5AI_CONFIG = array(
/*
* Files/folders that should not be listed. Specified
* by the complete filename or by a regular expression.
* http://www.php.net/manual/en/function.preg-match.php
*/
Files/folders that should not be listed. Specified
by the complete filename or by a regular expression.
http://www.php.net/manual/en/function.preg-match.php
*/
"IGNORE" => array(),
"IGNORE_PATTERNS" => array("/^\\./", "/^_h5ai/"),
/*
* Folders that contain one of these files will be considered
* not to be h5ai indexed folders.
*/
Folders that contain one of these files will be considered
not to be h5ai indexed folders.
*/
"INDEX_FILES" => array("index.html", "index.htm", "index.php")
);