deny directive


Purpose

The deny directive affects which hosts can access a given directory with a given method.


Scope

This directive is only available within Limit sections.


Syntax

deny from host1 host2 ... hostn

host is one of the following:


File

access.conf

Default

The default is to restrict to none.

Example

<Limit GET PUT>
order deny,allow
deny from all
allow from .ncsa.uiuc.edu
</Limit>
For this directory, the server evaluates the deny directive first for the GET and POST methods. So, nobody can read or POST to anything in this directory. It then evaluates the allow directive, and decides to allow clients from .ncsa.uiuc.edu to GET and POST to files here.


[Back] Return to access configuration overview
NCSA HTTPd Development Team / httpd@ncsa.uiuc.edu / Last Modified 7-12-95