我正在与CPANM一起与需要用户名和密码的代理进行交互。我在“ cpan下运行o conf init / proxy /”时指定了设置。我的看法是,在Unix环境中用于指定代理的变量在整个环境中都不是标准的。将环境变量设置为正确的值后,其他unix实用程序可以通过代理正常工作。
我的问题如下:
CPANM如何与任何环境变量交互?他们会是什么?
我们是否可以查找代码的相关区域来帮助消除歧义,我认为CPANM内部有一个LWP接口? https://github.com/miyagawa/cpanminus/blob/devel/App-cpanminus/cpanm
####:/mnt/c/Projects$ sudo cpanm install Catalyst::Helper -v
cpanm (App::cpanminus) 1.7040 on perl 5.022001 built for x86_64-linux-gnu-thread-multi
Work directory is /home/####/.cpanm/work/1543605706.124
You have make /usr/bin/make
You have LWP 6.36
You have /bin/tar: tar (GNU tar) 1.28
Copyright (C) 2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by John Gilmore and Jay Fenlason.
Searching install () on cpanmetadb ...
########:/mnt/c/Projects$ env | grep HTTP_proxy
HTTP_proxy=http://####:###
答案 0 :(得分:2)
据我所知,cpanm(实际上是App::Cpanminus依靠HTTP :: Tiny来运行HTTP请求。
HTTP :: Tiny可以代理http和https请求。仅支持基本代理授权,并且必须将其作为代理URL:http://user:pass@proxy.example.com/的一部分提供。
HTTP :: Tiny支持以下代理环境变量:http_proxy或HTTP_PROXY,https_proxy或HTTPS_PROXY,all_proxy或ALL_PROXY
因此,您应该尝试在URL中指定代理用户名和密码,例如:
$ export HTTP_PROXY=http://<user>:<password>@<url>:<port>
$ export HTTPS_PROXY=http://<user>:<password>@<url>:<port>
此外,根据文档,LWP :: UserAgent(cpan命令行实用程序使用的主要HTTP客户端)接受HTTP_PROXY设置,而curl(在LWP失败时cpan的回退)支持HTTPS_PROXY。参见the LWP::UserAgent docs和the curl docs。
因此,HTTP_PROXY / HTTPS_PROXY应该是所有CPAN客户端支持的常见环境变量。