如何防止capistrano覆盖用户在自己的文件夹中上传的文件?

时间:2010-04-03 10:23:22

标签: ruby-on-rails git capistrano

我正在使用Capistrano和git来部署RoR应用程序。我有一个文件夹,每个用户都有自己的文件夹。当用户上传或保存文件时,它将保存在自己的文件夹中。

当我将新版本的代码部署到服务器时,用户文件和文件夹将被我的开发机器上的内容覆盖。

有没有办法忽略capistrano中的某些文件夹,就像我们在git中那样?这篇文章 - http://www.ruby-forum.com/topic/97539 - 建议使用符号链接并将用户文件存储在共享文件夹中。但这是一个老帖子,所以我想知道现在是否有更好的方法。

另外,有没有人知道推荐使用RoR + git + capistrano的任何好的截屏/教程?

感谢。

2 个答案:

答案 0 :(得分:10)

您应该将用户的文件夹移到Capistrano的releases目录之外。通常的做法是让Capistrano创建指向应该在部署中保留的目录的符号链接。

以下是我的Rails博客应用程序config/deploy.rb中的示例,其中博客帖子中的下载文件和帖子中使用的图像存储在shared目录中:

after :deploy, 'deploy:link_dependencies'

namespace :deploy do
  desc <<-DESC
    Creates symbolic links to configuration files and other dependencies
    after deployment.
  DESC
  task :link_dependencies, :roles => :app do
    run "ln -nfs #{shared_path}/public/files #{release_path}/public/files"
    run "ln -nfs #{shared_path}/public/images/posts #{release_path}/public/images/posts"
  end
end

答案 1 :(得分:0)

这太晚了,但我遇到了这个问题。我使用rails 5和capistrano 3.6。我通过创建符号链接到共享文件夹来解决这个问题。

您的deploy.rb

中可能已有此行
set :linked_dirs, %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle}

如果要将用户的图像保存在public / images / user_images中并将其符号链接到共享文件夹,请添加带有空格的文件夹名称(如下所示):

set :linked_dirs, %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/images/user_images}

现在运行cap production deploy,您应该能够访问共享文件夹中的图像。