top of page

WELCOME TO CLOUD MATTER

Search

Proxies

  • Writer: Roman Guoussev-Donskoi
    Roman Guoussev-Donskoi
  • Nov 30, 2018
  • 1 min read

Updated: May 5, 2019

Visual Studio Proxy

devenv.exe.config in Visual Studio installation directory


NuGet proxies

C:\Users\<your-user-name>\AppData\Roaming\NuGet\NuGet.Config

(actual values of username and password can be irrelevant for many proxies)

Note: this settings helps in some operations but has shown problems with package installations.. Will take a look when get a chance.


PowerShell Proxies


set HTTP_PROXY=http://user:password@proxy.domain.com:port


or

$proxyString = "http://127.0.0.1:8888"

$proxyUri = new-object System.Uri($proxyString)

[System.Net.WebRequest]::DefaultWebProxy =     new-object System.Net.WebProxy ($proxyUri, $true)


If Need Credentials

(New-Object System.Net.WebClient).Proxy.Credentials = [System.Net.CredentialCache]::DefaultNetworkCredentials


Azure CLI

SET HTTPS_PROXY=http://user:password@xxx.xx.xx.xx:port

SET HTTP_PROXY=http://user:password@xxx.xx.xx.xx:port


Maven

in settings.xml

<proxies>

<proxy>

<active>true</active>

<protocol>http</protocol>

<host>xxx.xx.xx.xx.</host>

<port>port#</port>

<!--nonProxyHosts>local.net</nonProxyHosts -->

</proxy>

</proxies>


 
 
 

Recent Posts

See All
RAG processing at scale

Summary Application of generative AI has become more diverse. Ubiquitous chatbot RAG pattern is complemented by other scenarios. One of...

 
 
 

Comments


Home: Blog2

Subscribe

Home: GetSubscribers_Widget

CONTACT

Your details were sent successfully!

Computers
Home: Contact

©2018 by Cloud Matter. Proudly created with Wix.com

bottom of page