Rails 2.3.8:如何使用thin为生产中的资产提供服务

发布于 2024-12-13 20:59:12 字数 629 浏览 3 评论 0原文

我有一个应用程序在服务器 X 上的瘦端口 3001 上运行,我的 asset_host 配置为从另一台服务器 Y 下载资源。

这对所有资源都非常有效,但缓存的 javascript 资源除外:

了这一行:

= javascript_include_tag 'jquery', ..., 'swfobject2.js', :cache => (RAILS_ENV == 'production' ? 'all_back' : nil)

它会渲染

<script src="http://X:3001/javascripts/all_back.js?1319638182" type="text/javascript"></script>

得到 这

<script src="http://Y:3001/javascripts/all_back.js?1319638182" type="text/javascript"></script>

根本不困扰我,问题是,如果我请求一个文件或任何其他静态文件,thin 不会提供服务。

感谢您的回答。

I have an application running in production on thin, port 3001 on server X and my asset_host is configured for the assets to be downloaded from another server Y.

This works great for all assets but the cached javascript one :

Got this line :

= javascript_include_tag 'jquery', ..., 'swfobject2.js', :cache => (RAILS_ENV == 'production' ? 'all_back' : nil)

which renders

<script src="http://X:3001/javascripts/all_back.js?1319638182" type="text/javascript"></script>

instead of

<script src="http://Y:3001/javascripts/all_back.js?1319638182" type="text/javascript"></script>

This doesn't bother me at all, the problem is that thin does not serve the file or any other static file if I request one.

Thanks for your answers.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文