Advertisement
howtophil

signal-desktop-http-proxy.sh

Sep 1st, 2023 (edited)
767
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.51 KB | None | 0 0
  1. #!/bin/bash
  2. #--------------------------------------------------------------------
  3. # signal-desktop does not have a way to enter proxy info in the GUI
  4. # but you can change environment variables and make it work.
  5. # PdaNet and other Android proxies are HTTP proxies.
  6. # This should work in most cases.
  7. # ~Phillip J Rhoades (HowToPhil)
  8. #--------------------------------------------------------------------
  9.  
  10. export HTTP_PROXY=http://[Your-Proxy-Address]:[Your-Proxy-Port]
  11. export HTTPS_PROXY=$HTTP_PROXY
  12.  
  13. signal-desktop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement