设置要用于资产的网址

时间:2012-06-05 19:42:18

标签: ruby-on-rails ruby

我有一个rails应用程序

salmonfishing.com 

有一个数据库。我有另一个应用程序

salmonfishing-test.com

我如何为根网址添加别名,以便在用户转到

http://salmonfishing-test.com

来自

的资产和数据
http://salmonfishing.com database 

将被使用。

我的database.yml指向'salmonfishing'数据库,但生成的图像的URL是

http://salmonfishing-test/bigfish.png

这是预期的,但在内部我希望将其别名为

http://salmonfishing.com/bigfish.png

...基本上所有资产和数据都来自'salmonfishing'数据库,并保存到它。涉及设置子路径的各种方式,但不是资产和数据的根。

干杯,

 Jet

1 个答案:

答案 0 :(得分:0)

如果您的唯一问题是资产网址中的域名错误,您可以在环境配置文件中更改它:config/environments/[whatever].rb

config.action_controller.asset_host = "http://salmonfishing.com"

此行已存在于production.rb中,但已将其注释掉。