diff options
author | Eric Covener <covener@apache.org> | 2010-12-04 16:23:02 +0000 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2010-12-04 16:23:02 +0000 |
commit | 08309dbff6d428f3dff2e6e019de2318b3632d0a (patch) | |
tree | 23b6f349db97249b4a7f8c95dadb3fe3c38a5a69 /docs/manual/mod/mod_autoindex.xml | |
parent | 49bd9d3de10cc11e8b5733c6d7f9fa673eafde91 (diff) | |
download | httpd-08309dbff6d428f3dff2e6e019de2318b3632d0a.tar.gz |
PR#24243: allow some control over how IndexIgnore'd files are merged.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1042209 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_autoindex.xml')
-rw-r--r-- | docs/manual/mod/mod_autoindex.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_autoindex.xml b/docs/manual/mod/mod_autoindex.xml index c71fa0aef9..dbc285f58b 100644 --- a/docs/manual/mod/mod_autoindex.xml +++ b/docs/manual/mod/mod_autoindex.xml @@ -518,6 +518,37 @@ a directory</description> </directivesynopsis> <directivesynopsis> +<name>IndexIgnoreReset</name> +<description>Empties the list of files to hide when listing +a directory</description> +<syntax>IndexIgnoreReset ON|OFF</syntax> +<contextlist><context>server config</context><context>virtual host</context> +<context>directory</context><context>.htaccess</context> +</contextlist> +<override>Indexes</override> + +<usage> + <p>The <directive>IndexIgnoreReset</directive> directive removes + any files ignored by <directive>IndexIgnore</directive> otherwise + inherited from other configuration sections. </p> + + <example> + <Directory /var/www> + IndexIgnore *.bak .??* *~ *# HEADER* README* RCS CVS *,v *,t + </Directory> + <Directory /var/www/backups> + IndexIgnoreReset ON + IndexIgnore .??* *# HEADER* README* RCS CVS *,v *,t + </Directory> + </example> + + <note type="warning"><p> Review the default configuration for a list of + patterns that you might want to explicitly ignore after using this + directive.</p></note> +</usage> +</directivesynopsis> + +<directivesynopsis> <name>IndexOptions</name> <description>Various configuration settings for directory indexing</description> |