Created
October 27, 2011 12:38
-
-
Save asmega/1319442 to your computer and use it in GitHub Desktop.
default proxy for curl in .curlrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
proxy=http://username:password@host:port |
nice !
if there is a '@' in password?
@ArcherKing: http://stackoverflow.com/questions/10050877/url-username-with
You need to URL encode the @ as %40.
tnx
and what about no-proxy?
no-proxy=127.0.0.1,localhost,192.168.1.0/24
or
noproxy=127.0.0.1,localhost,192.168.1.0/24
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nice!