Automatically detecting proxy settings
Posted: - Modified: | geekThis goes into my /etc/laptop-net/profiles/school/files.d/var/www/proxy.js:
function FindProxyForURL(url,host) { if(isPlainHostName(host)|| isInNet(host,"10.0.0.0","255.0.0.0")) return "DIRECT"; else return "PROXY proxy.admu.edu.ph:3128; DIRECT"; }
and this goes into my /etc/laptop-net/profiles/home/files.d/var/www/proxy.js:
function FindProxyForURL(url,host) { return "DIRECT"; }
I deleted the other profile and changed my settings to automatically detect the proxy configuration from file:///var/www/proxy.js . Tada! No more worries. It just works.
You can comment with Disqus or you can e-mail me at sacha@sachachua.com.