Skip to content

Instantly share code, notes, and snippets.

@vheidari
Last active January 19, 2024 06:23
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vheidari/cf7be91dcc522c388488552a59e22049 to your computer and use it in GitHub Desktop.
Save vheidari/cf7be91dcc522c388488552a59e22049 to your computer and use it in GitHub Desktop.
MSYS2 - How to set proxy settings in msys2
# Add below lines to the profile in : /etc/profile
# Proxy Setting
export HTTP_PROXY="IpAddress:Port" # Like: 127.0.0.1:1477
export HTTPS_PROXY=$HTTP_PROXY
export http_proxy=$HTTP_PROXY
export https_proxy=$HTTP_PROXY
@Novodes
Copy link

Novodes commented Nov 8, 2022

There should not be any spaces before or after the '='

@vheidari
Copy link
Author

vheidari commented Nov 8, 2022

There should not be any spaces before or after the '='

Yes, that's right ;). updated :)

@vagra
Copy link

vagra commented Feb 7, 2023

very good! thanks!

@vheidari
Copy link
Author

vheidari commented Feb 7, 2023

very good! thanks!

You're welcome @vagra ☺️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment