faye 使用 Rails3 应用程序,请帮忙!

发布于 2024-11-23 23:21:41 字数 372 浏览 1 评论 0原文

我正在尝试让 faye 在我的生产服务器上运行,但是我应该在 javascript_include_tag 中使用什么来获取 faye.js 文件?

在开发中我使用这个:

http://localhost:9292/faye.js

但在生产中它不起作用。像这样的东西?或者 ... ?

http://www.mysite.com/faye.js

我网站的其余部分使用的是 apache,而 faye 则使用 Thin。我需要在 apache 中配置某些内容才能发送到 Thin / faye 吗?

很困惑。

请帮忙。

此致 理查德

I am trying to get faye running on my production server but what do i use in the javascript_include_tag to get the faye.js file ?

In development i use this :

http://localhost:9292/faye.js

But in production it does not work. Something like this ? or ... ?

http://www.mysite.com/faye.js

I am using apachi for the rest of my site and thin for faye. Do i need to configure something in apachi to send to thin / faye ?

very confussed.

Plese help.

best regards
Richard

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夏の忆 2024-11-30 23:21:41

Thin 和 Apache 需要设置为在不同的端口上运行。

两者的默认设置应该有效,但您应该仔细检查。确保 apache 在端口 80 下运行,thin 使用端口 9292。服务器启动时这些数字应该可见。

最后,您应该能够通过 http://mysite.com:9292/faye 访问 faye.js。 js 和您的网站 http://mysite.com/

注意:将我的评论变成了答案。

Thin and Apache need to be set up running on different ports.

The default settings for both should work, but you should double check. Ensure apache is running under port 80 and thin is using port 9292. These numbers should be visible when the servers start up.

In the end you should be able to access faye.js at http://mysite.com:9292/faye.js and your site at http://mysite.com/

NOTE: Turned my comments into an answer.

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