Diether
asked on 30 Dec 2022, 05:05 AM
| edited on 30 Dec 2022, 05:06 AM
Hello.
On Windows it works perfectly fine for me. However on Linux fiddler everywhere seems to be unable to catch traffic from windows games running through proton. Is there any way to get that working?
1 Answer, 1 is accepted
0
Nick Iliev
Telerik team
answered on 30 Dec 2022, 07:13 AM
Hello Diether,
Valve's Proton utilizes Wine ("Wine is not an Emulator") behind the scenes. As pointed out here, the Proton API won't respect the global variables http_proxy and https_proxy, and there is no official documentation for an API that allows you to modify the proxy settings. The same goes for WINE, where there is no official API to change the proxy configuration.
You could try modifying the proxy settings through WINE's registries - refer to the instructions listed in the following article:
HOWTO:
$ wine regedit
Open the key Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings
Create a new DWORD called "ProxyEnable" and give it the value "1"
Create a new String called "ProxySever" and give it the value
"your.proxy.here:port"
It looks like there is no straightforward approach to configuring Wine to go through a proxy. There are some complex solutions provided in this SO thread that include messing around with iptables, but I can't confirm or recommend that approach as it might cause other issues.