当前位置:  开发笔记 > 开发工具 > 正文

HTTP代理背后的Emacs

如何解决《HTTP代理背后的Emacs》经验,为你挑选了3个好方法。

Emacs能够使用url.el或W3 Web浏览器等软件包访问Internet .

此外,Emacs Lisp包存档严重依赖于包url.el.

现在,如何配置Emacs以使用我的HTTP代理连接到Internet?

在代理背后的ELPA任何帮助的奖励积分.

是的,之前我遇到过HTTP代理问题.



1> Trey Jackson..:

对于w3m,此设置对我有用:

(setq url-proxy-services '(("no_proxy" . "work\\.com")
                           ("http" . "proxy.work.com:911")))


如果您需要身份验证,只要您设置了url-proxy-services,Emacs(至少23.x)将询问您的用户名和密码.
@grm - 请看这个问题:http://stackoverflow.com/questions/10050186/is-it-possible-to-tell-emacs-on-windows-to-use-the-ie-http-proxy-settings/10050208 #10050208
是否有可能使Emacs使用IE代理设置?

2> gavenkoa..:

我的授权工作是:

(setq url-proxy-services
   '(("no_proxy" . "^\\(localhost\\|10\\..*\\|192\\.168\\..*\\)")
     ("http" . "proxy.com:8080")
     ("https" . "proxy.com:8080")))

(setq url-http-proxy-basic-auth-storage
    (list (list "proxy.com:8080"
                (cons "Input your LDAP UID !"
                      (base64-encode-string "LOGIN:PASSWORD")))))

适用于Emacs 24.3.它基于非公共API技巧,因此可能无法在其他Emacs版本中使用...



3> 小智..:

Emacs的填充url-proxy-services自变量http_proxy,https_proxy以及no_proxy环境变量,如果他们被设置.

推荐阅读
手机用户2402851155
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有