This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

parent proxie howto

Hi all!

I would like to use ASLs http proxie with a parent proxie.
Somewhere at this board I read i just have to add the parent proxie settings in the /var/chroot-squid/etc/squid.conf-default.
But I have no clue which variables must be set in this case and I really didn't get any smarter when I looked at squids homepage for an example config or the right vars.

So ... what vars do I have to add in the squid.conf.

Thanks in advance.
Greerings
Chris
 
 [size="1"][ 10 August 2002, 10:32: Message edited by: f3@Rl3SS ][/size]


This thread was automatically locked due to age.
Parents
  • Well, you need to make sure the following is in your squid.conf-default :

    icp_port 0

    (that will take care of your parent proxy not happy with icp requests)

    cache_peer  parent 8080 7 no-query default

    ... and in your access-control section make sure you have :

    never_direct allow all
    acl QUERY urlpath_regex cgi-bin asp \?
    no_cache deny QUERY

    (that will take care of your refresh problems or some form submits not working)

    Take Care   [:)]
Reply
  • Well, you need to make sure the following is in your squid.conf-default :

    icp_port 0

    (that will take care of your parent proxy not happy with icp requests)

    cache_peer  parent 8080 7 no-query default

    ... and in your access-control section make sure you have :

    never_direct allow all
    acl QUERY urlpath_regex cgi-bin asp \?
    no_cache deny QUERY

    (that will take care of your refresh problems or some form submits not working)

    Take Care   [:)]
Children