Isyweb est fermé et ne propose plus aucun de ses services !
Configurer Squid en mode elite/high-anonimity
Installer et configurer l'application serveur linux : Configurer Squid en mode elite/high-anonimityCe tutoriel est compatible avec les distributions suivantes : CentOS,
Debian,
Fedora,
Gentoo,
RedHat,
Ubuntu
Tutoriel
Pour configurer SQUID en mode elite ou High Anonimity il faut éditer votre fichier squid.conf
Il se trouve généralement ici : /etc/squid/squid.conf (sinon utiliser "locate squid.conf" pour le trouver)
Ajoutez ces lignes :
forwarded_for off
header_access Allow allow all
header_access Authorization allow all
header_access WWW-Authenticate allow all
header_access Proxy-Authorization allow all
header_access Proxy-Authenticate allow all
header_access Cache-Control allow all
header_access Content-Encoding allow all
header_access Content-Length allow all
header_access Content-Type allow all
header_access Date allow all
header_access Expires allow all
header_access Host allow all
header_access If-Modified-Since allow all
header_access Last-Modified allow all
header_access Location allow all
header_access Pragma allow all
header_access Accept allow all
header_access Accept-Charset allow all
header_access Accept-Encoding allow all
header_access Accept-Language allow all
header_access Content-Language allow all
header_access Mime-Version allow all
header_access Retry-After allow all
header_access Title allow all
header_access Connection allow all
header_access Proxy-Connection allow all
header_access All deny all
Sauvegardez, et relancer SQUID !
(pour relancer squid : sudo service squid stop et ensuite sudo service squid start [ou : sudo /etc/init.d/squid start(et stop)])
Voilà !
Si vous souhaitez passer par un tunnel SSH sur votre PC (pas le serveur!) :
ssh -T -N -x -C -L3128:127.0.0.1:3128 [email protected]
Configurez le proxy de votre navigateur comme ceci ensuite : 127.0.0.1 : 3128
Bonne chance !