通过http代理重新连接依赖项

时间:2012-08-15 07:56:46

标签: proxy erlang rebar

我有一个包含此deps条目的rebar.config:

{cowboy, ".*", {git, "http://github.com/extend/cowboy.git", {branch, "master"}}}

当我运行“钢筋编译”时,我得到了这个:

Dependency not available: cowboy-.* ({git, "http://github.com/extend/cowboy.git", {branch,"master"}})

我相信这是因为我在防火墙后面,我访问互联网的唯一方法是通过http代理。有没有办法设置钢筋使用http代理?

1 个答案:

答案 0 :(得分:1)

当deps元组包含{git, "http://..."}时,似乎rebar使用git来获取依赖项。所以我通过在.gitconfig中添加它来解决这个问题:

[http]
    proxy = http://myproxy-url.com:8080