Chipster.org Posted October 12, 2022 Report Posted October 12, 2022 Friends, I want all PaleMoon requests to go to my local Apache instance without any leakage to the Internet. I know my Apache is configured correctly because when I submit the request "127.0.0.1:8088" I get results from my server. In Palemoon, I can change the Preferences|Network to use a manual proxy server (as above) and everything works great until I close and reopen PaleMoon, when it defaults back to using the PAC file. When I try to use a PAC file, I get inconsistent results, but they usually ignore the proxy and go out to the Internet. My two options seem to be: a. make the manual proxy server settings stick b. write a PAC file that only serves p content from my Apache instance Any ideas as how best to do either of these things? Thanks, -- Cliff Quote
Chipster.org Posted October 12, 2022 Author Report Posted October 12, 2022 Oh, and the PAC file I'm editing is UniformServer/home/us_pac/proxy.pac It reads, function FindProxyForURL(url, host) { if (isPlainHostName(host)) { return "PROXY 127.0.0.1:8088"; } else { return "PROXY 127.0.0.1:8088"; } } Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.