File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / doc / outdated / access.txt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 14 10:32:48 2013 UTC (10 years, 8 months ago) by misho
Branches: lighttpd, MAIN
CVS tags: v1_4_41p8, v1_4_35p0, v1_4_35, v1_4_33, HEAD
1.4.33

======
Access
======

------------------
Module: mod_access
------------------

:Author: Allan Wind
:Date: $Date: 2013/10/14 10:32:48 $
:Revision: $Revision: 1.1.1.1 $

:abstract:
  The access module is used to deny access to files with given trailing path names.

.. meta::
  :keywords: lighttpd, trailing path access control

.. contents:: Table of Contents

Description
===========

The access module is used to deny access to files with given trailing path names.

Options
=======

url.access-deny
  Denies access to all files with any of given trailing path names.

  Default: empty

  Example: ::

    url.access-deny = ( "~", ".inc")

  will deny access to all files ended with a diacritical mark (~) or .inc
  such as example~ or example.inc.  A trailing diacritical mark is often
  used by editors for backup files.  And the .inc extension is often used
  for include files with code.

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>