i'm running a squid cache on my machine.
it works fine in conjunction with browsers, but
when i make a request through it like this
HEAD / HTTP/1.1
Host: localhost
Proxy-Connection: close
i get a HTTP/1.0 400 Bad Request response from my squid.
if the request looks like this
HEAD [
127.0.0.1...] HTTP/1.1
Host: localhost
Proxy-Connection: close
i get the requested data like usual.
the request syntax squid needs is not a standart one, is it?
there must be a way to configure it (restrict to the htt protocol
or something like that) because if i do the request through
my isp's squid cache everythng works fine using the standart request syntax
how can i configure my squid to work properly?
thanks in advance :)