我在代理服务器后面的debian服务器上修改了几个东西:
apt-get
sudo vi /etc/apt/apt.conf.d/proxy
获取:: http :: Proxy“http:// ...”;
GIT中
alias curl =“curl -x ...”
所以现在git和apt-get通过代理
工作正常现在我尝试使用以下命令安装composer:
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
但它在下载时陷入困境......然后: 无法下载“https://getcomposer.org/versions”文件:无法打开流:连接超时 重试...
如何让它通过代理安装,然后让作曲家在代理后工作正常?
感谢。