Capistrano + Asset Pipeline + Rails sub app
993 ワード
Rails Application をルートではなく、サブディレクトリに複数並べて動作させている場合の設定の仕方。
Rails 側は、環境ごとの設定になるはずなので、environments 側に書く(ここでは、Production)。
production.rb
ENV['RAILS_RELATIVE_URL_ROOT'] = "/hoge"
これだけでもある程度はうまくいくが、Asset を Precompile してできたもの(CSS とか JavaScript とか) に image-url などを利用している場合、そこにサブディレクトリの設定が適用されない。
ここを動作させるためには、deploy.rb を変更する。
deploy.rb
set :asset_env, "RAILS_GROUPS=assets RAILS_RELATIVE_URL_ROOT='/hoge'"
Author And Source
この問題について(Capistrano + Asset Pipeline + Rails sub app), 我々は、より多くの情報をここで見つけました https://qiita.com/misopeso/items/d33b079a8aa6e0210529著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .