Proxy Settings
From AragoWiki
(Difference between revisions)
| Line 24: | Line 24: | ||
(echo "CONNECT $1:$2 HTTP/1.0"; echo; cat ) | /usr/bin/nc $PROXYHOST $PROXYPORT | (read a; read a; cat ) | (echo "CONNECT $1:$2 HTTP/1.0"; echo; cat ) | /usr/bin/nc $PROXYHOST $PROXYPORT | (read a; read a; cat ) | ||
| - | In order for git to use the above script, <code>GIT_PROXY_COMMAND<code> environment variable needs to point to it: | + | In order for git to use the above script, <code>GIT_PROXY_COMMAND</code> environment variable needs to point to it: |
$ export GIT_PROXY_COMMAND=/path/to/git-proxy.sh | $ export GIT_PROXY_COMMAND=/path/to/git-proxy.sh | ||
Current revision as of 00:45, 13 January 2009
HTTP/FTP
HTTP and FTP transports can be configured with the environment variables:
$ export http_proxy=proxyhost:port $ export ftp_proxy=proxyhost:port
Some internal hosts don't need to go through the proxy:
$ export no_proxy=host1,host2
Subversion
Subversion/svn proxy is configured in ~/.subversion/servers file:
[global] http-proxy-host = proxyhost http-proxy-port = port
git
git needs a helper application/script to work through the proxy. One needs to create such script, following this example:
#!/bin/sh PROXYHOST=proxyhost PROXYPORT=port (echo "CONNECT $1:$2 HTTP/1.0"; echo; cat ) | /usr/bin/nc $PROXYHOST $PROXYPORT | (read a; read a; cat )
In order for git to use the above script, GIT_PROXY_COMMAND environment variable needs to point to it:
$ export GIT_PROXY_COMMAND=/path/to/git-proxy.sh

