DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=38733>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38733





------- Additional Comments From [EMAIL PROTECTED]  2006-02-21 22:37 -------
The problem is that mod_access lumps its configuration together with a method
list. If no <limit> is set, all methods are implicitly in this list. Now you
have a <Location> container, which overrides both the configuration *and* the
method list. Bang.

Funnily the httpd only allows methods it can deal with (and rejects the other
ones with 405). I bet, you have PHP or something installed, which doesn't care
at all for the requested method (and the scripts don't either). This is the
reason why you want to forbid some methods. I don't understand the reason, but I
don't have to ;-)

An alternative way to forbid methods, is setting up mod_rewrite, like

RewriteCond %{REQUEST_METHOD} =CONNECT
RewriteRule ^ - [F,L]

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to