Rails 2.3.8:如何使用thin为生产中的资产提供服务
我有一个应用程序在服务器 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论