Google is becoming useless for research. I started trying to google these individually...waste of time...site after site of garbage....
Even tried to search just for the squid documentation on this...couldn't find it... :(
Anyhow, these are the Server Headers I've found to be indicative that we're dealing w/ a proxy:
$_SERVER['FORWARDED'],
$_SERVER['FORWARDED_FOR_IP'],
$_SERVER['HTTP_CLIENT_IP'],
$_SERVER['HTTP_FORWARDED_FOR'],
$_SERVER['HTTP_FORWARDED_FOR_IP'],
$_SERVER['HTTP_PROXY_CONNECTION'],
$_SERVER['HTTP_VIA'],
$_SERVER['HTTP_X_FORWARDED'],
$_SERVER['HTTP_X_FORWARDED_FOR'],
$_SERVER['MT-PROXY-ID'],
$_SERVER['VIA'],
$_SERVER['X-FORWARDED-FOR'],
$_SERVER['X-PROXY-ID']
but I bet that most of them show practically nothing...so I figured you old pros probably know better than anyone which are worth tracking?
I was thinking of:
$_SERVER['FORWARDED'],
$_SERVER['HTTP_CLIENT_IP'],
$_SERVER['VIA'],
$_SERVER['X-FORWARDED-FOR']
Am I missing any? Are all of the above useful?