diff options
Diffstat (limited to 'proxy.pac.sample')
-rw-r--r-- | proxy.pac.sample | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/proxy.pac.sample b/proxy.pac.sample new file mode 100644 index 0000000..9283920 --- /dev/null +++ b/proxy.pac.sample @@ -0,0 +1,6 @@ +function FindProxyForURL(url, host) { + // For SPDY proxy + return "HTTPS localhost:3000"; + // For conventional HTTP proxy + // return "PROXY localhost:3000"; +} |