We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 930a28e commit 2ee2ae6Copy full SHA for 2ee2ae6
src/interceptors/fresh-firefox.ts
@@ -80,6 +80,12 @@ export class FreshFirefox {
80
'network.proxy.ssl': '"localhost"',
81
'network.proxy.ssl_port': proxyPort,
82
83
+ // The above james proxy/noProxy settings should do this, but don't seem to
84
+ // reliably overwrite existing values, so we set them explicitly.
85
+ 'network.proxy.http': '"localhost"',
86
+ 'network.proxy.http_port': proxyPort,
87
+ 'network.proxy.http.network.proxy.http.no_proxies_on': certCheckServer.host,
88
+
89
// Disable the noisy captive portal check requests
90
'network.captive-portal-service.enabled': false,
91
0 commit comments