mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-08-08 14:56:35 +02:00
Minor changes.
This commit is contained in:
@@ -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",
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
{{pkg.name}} {{pkg.version}}
|
||||
{{pkg.url}}
|
||||
|
||||
Configuration
|
||||
options, types and localization
|
||||
|
@@ -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")
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user