On Mon, Sep 25, 2006, Jacob, Stanley (GE Money, consultant) wrote: > > Hi All, > > Is there any way we can define a port (not in the standard squid.conf) as a Safe_port or SSL_port . > The objective is to allow a particular IP to access the site with the non regular port. Just put some early rule in which'll allow the port: acl specialport port 1212 acl specialhost src 192.168.1.1/32 http_access allow specialhost specialport Put that http_access line before the Safe_ports / SSL_ports ACL. Adrian