Que cherchez-vous ?
< Tous les sujets
Imprimer

Internet – Proxy.pac

Exemple de fichier proxy.pac :

function FindProxyForURL(url, host)
{
if (isInNet(host, "172.17.32.0", "255.255.240.0"))
return "PROXY 193.49.62.50:8080";
else
return "DIRECT";
}