> -----Original Message----- > From: Marcelo Farias [mailto:marcello@xxxxxxxxxxxxx] > Sent: Thursday, July 07, 2005 1:54 PM > To: Squid users > Subject: Re: 9001 port > > > >> Are you trying to use squid to connect to a service on port 9001, or are you >> trying to get squid to listen for proxy connections on port 9001? What kind >> of error is occurring (browser timeout, squid error, etc)? >> >> Chris > > I am trying to connect to a secure Web service on port 9001 throught squid, > but when i get the site i have errors in the page > Maybe is something that should not be cached > securely transmited documents ? > > > Marcello # Adjust and add this to your squid.conf acl port9001 port 9001 acl SomeSite dst secure.site.example http_access allow CONNECT port9001 SomeSite # Addition ends here That setup will allow CONNECT requests (which SSL uses) to port 9001 of secure.site.example. Less secure, but more flexible would be to add port 9001 to the list of SSL ports in the squid.conf. Chris