Home Rails 让对应的进程使用代理use_http_proxy_in_rails_app
Post
Cancel

Rails 让对应的进程使用代理use_http_proxy_in_rails_app

refer to: https://stackoverflow.com/questions/15792999/how-to-set-a-proxy-in-rubys-net-http

在terminal中,直接设置 http_proxy 变量就可以。(export HTTP_PROXY=...)

在rails中也一样。

1. export http_proxy=xx

2. rails s

这样,进入到rails console中,就可以看到 ENV['http_proxy'] 这个值了。

然后就可以直接在 rails中:

HTTParty.get "google.com"了。

This post is licensed under CC BY 4.0 by the author.