0

Capistrano でコードをデプロイしています。これは次の内容ですdeploy.rb

require 'bundler/capistrano'
set :application, "project_name"
set :use_sudo, false

set :scm, :git
set :repository, "git@bitbucket.org:my_name/fileito.git"
set :branch, "master"
set :deploy_via, :remote_cache
#set :deploy_via, :copy

set :user, "deployer"
set :password, "password"
set :deploy_to, "/home/deployer/project_name"
#set :app_site, "ec2-xx-xxx-xx-xxx.compute-1.amazonaws.com" 
set :app_site, "xx.xxx.xxx.xxx"

role :web, app_site                     # Your HTTP server, Apache/etc
role :app, app_site                     # This may be the same as your `Web` server
role :db,  app_site, :primary => true   # This is where Rails migrations will run

require 'capistrano-unicorn'
after 'deploy:restart', 'unicorn:reload' # app IS NOT preloaded
after 'deploy:restart', 'unicorn:restart'  # app preloaded

set :whenever_command, "bundle exec whenever"
require "whenever/capistrano/recipes"

# Added:
after "deploy:stop", "deploy:start"
namespace :deploy do
  task :start do
    run "/etc/init.d/apache2 start"
  end
  task :stop do
    run "/etc/init.d/apache2 stop"
  end
  task :restart, :roles => :app, :except => { :no_release => true } do
    run "touch #{File.join(current_path,'tmp','restart.txt')}"
  end
end

しかし、新しいコードをデプロイしてブラウザーでアプリを確認すると、古いコードがまだ残っていることがわかります。どうしたの?ディレクトリを調べると、新しいコードがあります - catコマンドcurrentを使用して手動でファイルをチェックしました。

ブラウザがまだ古いバージョン -> 古いコードである可能性はありますか?

ありがとう

4

1 に答える 1