Setting up the PAC file on Forticache?
- October 14, 2016
- 1 reply
- 6546 views
Basically everything is working properly. The forticache is setup as explicit proxy. Here's the script i use for the PAC file.
function FindProxyForURL(url, host) {
return "PROXY 172.16.10.10:8080; DIRECT"; return "DIRECT"; return "PROXY 172.16.10.10:8080"; }
Everything goes through the proxy. but when a user doesnt detect the forticache, it will use the direct connections.
I've put it in the local directory of my computer, and i entered that location in the Automatic-proxy configuration settings of my browser. It works.
verified via chrome://net-internals/#proxy Now i want to use the PAC File server (http://<forticache_ip>:8080/proxy.pac) of the Forticache. But it doesnt work. I went to Firewall Objects > Web Proxy > Explicit > 'explicit-proxy' object Edited the PAC file content of the explicit-proxy object. But still the http://<forticache_ip>:8080/proxy.pac i even tried using http://<forticache_ip>:8080/explicit-proxy.pac but it doesnt work either. am i missing something here? i hope you can point me out to the correct setup. thanks a lot :)
