Capistranoによるdeploy後にsitemapを再生成する
684 ワード
sitemap_generatorというgemを使うと、RailsアプリケーションのXML Sitemapを簡単に出力することができる。
sitemap_generatorはCapistranoにも対応していて、deploy後に自動的にsitemapを再生成することが可能。
方法は簡単。deploy.rb
に以下を記述すればOK。
after "deploy", "refresh_sitemaps"
task :refresh_sitemaps do
run "cd #{latest_release} && RAILS_ENV=#{rails_env} bundle exec rake sitemap:refresh"
end
ドキュメントではbundle exec
がない記述が紹介されてるけど、こちらのほうが安全。
Author And Source
この問題について(Capistranoによるdeploy後にsitemapを再生成する), 我々は、より多くの情報をここで見つけました https://qiita.com/kadoppe/items/c3a4d87b70866641839a著者帰属:元の著者の情報は、元の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 .