In case http/https
switching doesn't work we introduced new configuration switches to enable proxy settings. Currently this settings is available only through registry keys / ini files.
To configure proxy set following values
HKEY_CURRENT_USER\Software\Inventic s.r.o.\Skipper\cfg\system\proxy-server
HKEY_CURRENT_USER\Software\Inventic s.r.o.\Skipper\cfg\system\proxy-port
HKEY_CURRENT_USER\Software\Inventic s.r.o.\Skipper\cfg\system\proxy-login
HKEY_CURRENT_USER\Software\Inventic s.r.o.\Skipper\cfg\system\proxy-pass
First serves to configure CURLOPT_PROXY
, second to CURLOPT_PROXYPORT
, last two to fill CURLOPT_PROXYUSERPWD
(as UrlEncoded(login):UrlEncoded(pass)).
Alternatively, it's possible to use key proxy-login-pass instead of proxy-login and proxy-pass
HKEY_CURRENT_USER\Software\Inventic s.r.o.\Skipper\cfg\system\proxy-login-pass
but in this case login and password have to be correctly UrlEncoded manually directly in this key.
Note: Undefined or empty values aren't passed to curl methods.