Rails 3.1 - 如何编辑和“代理” Faye 的 HTTP 请求?
我有一个 Rails 3.1 应用程序,并且一直使用 Faye 进行消息传递。我想知道是否可以通过我的 Rails 应用程序将所有 faye ('/faye') 消息路由到 Faye 服务器。我一直在尝试以下内容,但没有任何运气,而且我之前没有对 Net::HTTP 做过太多事情。如有任何帮助,我们将不胜感激,谢谢。
配置/路由.rb 匹配 '/faye' => 'faye#default'
应用程序/控制器/faye_controller.rb 默认值 # 我需要这里的代码基本上只是编辑请求并将其转发到我的 faye 服务器 我什
至不需要 Rails 来查看 Faye 的返回路径,只需验证客户端(或拒绝)并编辑请求(将用户名添加到消息),然后让 Faye 做它的事情。
我查看了 Net::HTTP::Proxy 但我只想转发数据包。我将在几个小时后回来,很抱歉不能在这里。
I have a Rails 3.1 app and have been using Faye for messaging. I am wondering if it is possible to route all faye ('/faye') messages to the Faye server THROUGH my Rails app. I have been experimenting with the below but without any luck and I haven't done much with Net::HTTP before. Any help is appreciated, thanks.
config/route.rb
match '/faye' => 'faye#default'
app/controllers/faye_controller.rb
def default
# I need code here to basically just edit and forward the request to my faye server
end
I don't even need Rails to see the return path from Faye, just authenticate the client (or reject) and edit the request (add username to message) and let Faye do its thing.
I looked into Net::HTTP::Proxy but I only want to forward the packet. I will be back in a couple hours so sorry for not being right here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要配置您的 apache 服务器来处理您的 faye 转发。
将 someport 更改为您正在运行 faye 的端口。
You might want to configure your apache server to handle your faye forwarding.
change someport to the port you are running your faye.