cats-main
cats-main copied to clipboard
Proxy configuration for git
We need to set http.proxy for git to access external repositories.
I have added the proxy variable to Config.pm.template.
Unfortunately, git config --global invocation fails at least on Debian due to the fact
that www-data user does not have a HOME set.
Options are:
- Figure out how to config Apache for setting
HOME - Use
git config --systemin installation script - Use something like
http_proxy=$proxy; git ...for git invocation
@koninka