On Mon, 14 Feb 2005, Dinil Divakaran wrote:
delay_access 2 allow allowed_hosts delay_access 1 allow localhost delay_access 1 allow all
delay_access is sorted per pool, always starting with pool 1, then pool 2 etc... so the above configuration is equivalent to
delay_access 1 allow localhost delay_access 1 allow all delay_access 2 allow allowed_hosts
so with the above configuration all requests will go into pool 1.
Regards Henrik