[4390] in bugtraq
Re: mod_proxy problem in Apache v1.2b8
daemon@ATHENA.MIT.EDU (Dean Gaudet)
Wed Apr 30 19:37:12 1997
Date: Wed, 30 Apr 1997 13:46:38 -0700
Reply-To: Dean Gaudet <dgaudet@APACHE.ORG>
From: Dean Gaudet <dgaudet@APACHE.ORG>
X-To: Valgamon <valgy@GNU.AI.MIT.EDU>
To: BUGTRAQ@NETSPACE.ORG
In-Reply-To: <Pine.LNX.3.95.970428224710.1542A-100000@tridox.cfug.org>
This was fixed in 1.2b10.
Another note I'd like to make:
On Mon, 28 Apr 1997, Valgamon wrote:
> <Directory proxy:*>
> <Limit GET>
> order deny,allow
> deny from all
> allow from testing.machine.ip.address
> </Limit>
> </Directory>
This is better written as:
<Directory proxy:*>
order deny,allow
deny from all
allow from testing.machine.ip.address
</Directory>
Earlier Apache documentation and examples always included the
<Limit>..</Limit> sections. But it's better to not include them when
you're concerned about limiting everything. (Consider POST, PUT, etc.)
This applies to pretty much every case of <Limit> that I've seen in user
configs.
Laters
Dean