I have apache 2.0.54 with PHP4.3.11 and I would like to deny method CONNECT like this: (its on the end of apache2.conf)
<Location />
  <Limit CONNECT>
    Order Deny,Allow
    Deny from all
  </Limit>
</Location>

Now when i try:
$ telnet www.somehost.com 80
Trying ###.###.###.###...
Connected to www.somehost.com.
Escape character is '^]'.
CONNECT www.google.com:80 HTTP/1.0
[enter]
[enter]

I have response HTTP/1.1 403 Forbidden
BUT all other directives and settings using order... doesnt works. For example:
<IfModule mod_access.c>
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
</Files>
</IfModule>
from apache config file doesnt works (all .ht files are accessible). Settings from .htaccess files has no effects too etc.

Without <limit CONNECT>... the response on telnet is HTTP/1.1 200 and i dont want it.
Can someone help me with deny method connect please.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to