Re: mod_proxy problem in Apache v1.2b8

Dean Gaudet (dgaudet@APACHE.ORG)
Wed, 30 Apr 1997 13:46:38 -0700

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