Open talagrand opened 1 year ago
reqwest attempts to configure itself to use the system proxy, since #683.
On Windows, this appears to only work on the current per-user configured proxy: https://github.com/seanmonstar/reqwest/blob/17c893ffc0d3832d61cb1c0cf278340b7e95557e/src/proxy.rs#L893C4-L893C26
If a machine-scope proxy is configured, this should also be auto-configured as well, e.g. from an elevated PowerShell window:
Set-WinhttpProxy -ProxyServer "<ip>:8080" Set-WinhttpProxy -SettingScope Machine -Proxy "<ip>:8080"
+1
reqwest attempts to configure itself to use the system proxy, since #683.
On Windows, this appears to only work on the current per-user configured proxy: https://github.com/seanmonstar/reqwest/blob/17c893ffc0d3832d61cb1c0cf278340b7e95557e/src/proxy.rs#L893C4-L893C26
If a machine-scope proxy is configured, this should also be auto-configured as well, e.g. from an elevated PowerShell window: