Tweak the deployment

This commit is contained in:
Petko Bordjukov 2015-10-06 16:05:55 +03:00
parent 1c61e45146
commit 36c61cc531
No known key found for this signature in database
GPG Key ID: 2ABD54A3A1D5078A
2 changed files with 3 additions and 2 deletions

View File

@ -22,6 +22,7 @@ require 'capistrano/bundler'
require 'capistrano/rails/assets'
require 'capistrano/rails/migrations'
require 'capistrano/puma'
require 'capistrano/puma/nginx'
# require 'capistrano/passenger'
# Load custom tasks from `lib/capistrano/tasks` if you have any defined

View File

@ -26,7 +26,7 @@ set :deploy_to, '/home/barf/gauge'
set :linked_files, fetch(:linked_files, []).push('config/secrets.yml')
# Default value for linked_dirs is []
set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system')
set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system', 'db')
# Default value for default_env is {}
# set :default_env, { path: "/opt/ruby/bin:$PATH" }
@ -36,7 +36,7 @@ set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', '
set :rvm_ruby_version, '2.2.2'
set :puma_bind, ["tcp://127.0.0.1:9088"]
set :puma_bind, ["unix://#{shared_path}/tmp/sockets/puma.sock"]
set :puma_init_active_record, true
set :puma_access_log, "#{shared_path}/log/puma_access.log"
set :puma_error_log, "#{shared_path}/log/puma_error.log"