Skip to content

How to set a proxy for Signal-Desktop on Windows

If you want to use signal behind a cooperate proxy, you have to write a little bat script to set some proxy variables in the environment before starting signal. Copy and paste the following code into a file like set_proxy_and_start_signal.bat.

:: ####
:: # Sets http and https proxy variables and starts signal.
:: ####
:: # @see: https://github.com/signalapp/Signal-Desktop/issues/1430#issuecomment-397229333
:: # @since: 2020-02-14
:: # @author: stev leibelt <artodeto@bazzline.net>
:: ####

set HTTP_PROXY=<your proxy>
set HTTPS_PROXY=%HTTP_PROXY%
start %LOCALAPPDATA%\Programs\signal-desktop\Signal.exe

If you want to know more here is the thread for this issue.