Rails 3.1 - 如何编辑和“代理” Faye 的 HTTP 请求?

发布于 2025-01-08 20:54:35 字数 454 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帅的被狗咬 2025-01-15 20:54:35

您可能需要配置您的 apache 服务器来处理您的 faye 转发。

<Proxy *> 
    Allow from all
</Proxy>

ProxyPass /somenamespace http://localhost:someport 
ProxyPassReverse /somenamespace http://localhost:someport
<Location /somenamespace>    
    Allow from all
</Location>

将 someport 更改为您正在运行 faye 的端口。

You might want to configure your apache server to handle your faye forwarding.

<Proxy *> 
    Allow from all
</Proxy>

ProxyPass /somenamespace http://localhost:someport 
ProxyPassReverse /somenamespace http://localhost:someport
<Location /somenamespace>    
    Allow from all
</Location>

change someport to the port you are running your faye.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文