Ruby on rails recaptcha配置中的代理是什么?

Ruby on rails recaptcha配置中的代理是什么?,ruby-on-rails,proxy,recaptcha,Ruby On Rails,Proxy,Recaptcha,我正在使用Rails 3.1.0中的recaptcha gem。我遵循github页面上的说明: 我已获得密钥,正在配置recaptcha,如下所示 Recaptcha.configure do |config| config.public_key = '6Lc6BAAAAAAAAChqRbQZcn_yyyyyyyyyyyyyyyyy' config.private_key = '6Lc6BAAAAAAAAKN3DRm6VA_xxxxxxxxxxxxxxxxx' config.pr

我正在使用Rails 3.1.0中的recaptcha gem。我遵循github页面上的说明:

我已获得密钥,正在配置recaptcha,如下所示

Recaptcha.configure do |config|
  config.public_key  = '6Lc6BAAAAAAAAChqRbQZcn_yyyyyyyyyyyyyyyyy'
  config.private_key = '6Lc6BAAAAAAAAKN3DRm6VA_xxxxxxxxxxxxxxxxx'
  config.proxy = 'http://myproxy.com.au:8080'
end

config.proxy的用途是什么?我该填什么

recaptcha要求web服务器能够对外访问internet。如果您想为recaptcha使用特定的web服务器,您需要它的地址

否则,您可以对其进行评论。它应该很好用

Recaptcha.configure do | config|
config.public_key='6lc6baaaaachqrbqrzcn_uyyyyyyyyyyyyyy'
config.private_key='6lc6baaaaaakn3drm6va_uxxxxxxxxxxxxxxxx'
#config.proxy=http://myproxy.com.au:8080'
结束