prod
This commit is contained in:
parent
772e87ffb7
commit
55595b1c1f
@ -1,13 +1,9 @@
|
|||||||
|
|
||||||
# ajouter shared_path, modifier liens symboliques & mkdir
|
|
||||||
# changer unicorn_init_d
|
|
||||||
# changer unicorn.rb
|
|
||||||
# changer nginx.conf
|
|
||||||
set :application, 'negos_app'
|
set :application, 'negos_app'
|
||||||
set :domain, 'sideplace.bally.me'
|
set :domain, 'negos-pro.fr'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
set :user, 'web'
|
set :user, 'web'
|
||||||
|
|
||||||
set :scm_user, "git"
|
set :scm_user, "git"
|
||||||
set :scm_host, "git.nicolasbally.com"
|
set :scm_host, "git.nicolasbally.com"
|
||||||
|
|
||||||
@ -25,7 +21,6 @@ set :use_sudo, false
|
|||||||
|
|
||||||
|
|
||||||
set :deploy_to, "/home/#{user}/#{application}/"
|
set :deploy_to, "/home/#{user}/#{application}/"
|
||||||
|
|
||||||
set :deploy_via, :remote_cache
|
set :deploy_via, :remote_cache
|
||||||
|
|
||||||
set :normalize_asset_timestamps, false
|
set :normalize_asset_timestamps, false
|
||||||
@ -42,9 +37,6 @@ set :repository, "#{scm_user}@#{scm_host}:root/#{application}.git"
|
|||||||
|
|
||||||
set :branch, "master"
|
set :branch, "master"
|
||||||
|
|
||||||
|
|
||||||
set :shared_path, "/media/bigone/shareds/#{application}"
|
|
||||||
|
|
||||||
default_run_options[:pty] = true
|
default_run_options[:pty] = true
|
||||||
|
|
||||||
|
|
||||||
@ -75,17 +67,17 @@ namespace :deploy do
|
|||||||
task :symlink_config_files do
|
task :symlink_config_files do
|
||||||
|
|
||||||
|
|
||||||
run "ln -s #{shared_path}/private #{current_path}/private_medias"
|
run "ln -s #{deploy_to}shared/storage/private #{current_path}/private_medias"
|
||||||
run "ln -s #{shared_path}/public #{current_path}/public/public_medias"
|
|
||||||
run "ln -s #{shared_path}/production.sqlite3 #{current_path}/db/production.sqlite3"
|
run "ln -s #{deploy_to}shared/storage/public #{current_path}/public/public_medias"
|
||||||
|
|
||||||
|
|
||||||
|
run "ln -s #{deploy_to}shared/production.sqlite3 #{current_path}/db/production.sqlite3"
|
||||||
|
|
||||||
sudo "cp #{current_path}/config/unicorn_init_d /etc/init.d/#{application}"
|
sudo "cp #{current_path}/config/unicorn_init_d /etc/init.d/#{application}"
|
||||||
|
|
||||||
sudo "chmod +x /etc/init.d/#{application}"
|
sudo "chmod +x /etc/init.d/#{application}"
|
||||||
sudo "update-rc.d #{application} defaults "
|
sudo "update-rc.d #{application} defaults "
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
@ -110,26 +102,17 @@ namespace :deploy do
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
task :db_create do
|
|
||||||
run "cd #{deploy_to}current && bundle exec rake db:create RAILS_ENV=#{rails_env}"
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
task :seeds do
|
task :seeds do
|
||||||
run "cd #{deploy_to}current && bundle exec rake db:seed RAILS_ENV=#{rails_env}"
|
run "cd #{deploy_to}current && rake db:seed RAILS_ENV=#{rails_env}"
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
task :create_files_folders do
|
task :create_files_folders do
|
||||||
|
|
||||||
# run "mkdir #{deploy_to}shared/storage"
|
run "mkdir #{deploy_to}shared/storage"
|
||||||
# run "mkdir #{deploy_to}shared/storage/private"
|
run "mkdir #{deploy_to}shared/storage/private"
|
||||||
# run "mkdir #{deploy_to}shared/storage/public"
|
run "mkdir #{deploy_to}shared/storage/public"
|
||||||
|
|
||||||
run "mkdir #{shared_path}/private"
|
|
||||||
run "mkdir #{shared_path}/public"
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
@ -154,3 +137,4 @@ after "deploy", "deploy:cleanup"
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
|||||||
upstream negos_app_unicorn {
|
upstream negos_app_unicorn {
|
||||||
server unix:/home/web/negos_app/unicorn.sock fail_timeout=0;
|
server unix:/home/web/negos_app/shared/unicorn.sock fail_timeout=0;
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
@ -13,7 +13,6 @@ server {
|
|||||||
proxy_set_header Host $http_host;
|
proxy_set_header Host $http_host;
|
||||||
proxy_redirect off;
|
proxy_redirect off;
|
||||||
proxy_pass http://negos_app_unicorn;
|
proxy_pass http://negos_app_unicorn;
|
||||||
proxy_read_timeout 20000;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
error_page 500 502 503 504 /500.html;
|
error_page 500 502 503 504 /500.html;
|
||||||
@ -24,6 +23,5 @@ server {
|
|||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
server_name www.negos-pro.fr;
|
server_name www.negos-pro.fr;
|
||||||
rewrite ^(.*) https://negos-pro.fr$1 permanent;
|
rewrite ^(.*) http://negos-pro.fr$1 permanent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ set -e
|
|||||||
APP_NAME=negos_app
|
APP_NAME=negos_app
|
||||||
APP_RUBY=2.1.2
|
APP_RUBY=2.1.2
|
||||||
APP_ROOT="/home/web/negos_app/current"
|
APP_ROOT="/home/web/negos_app/current"
|
||||||
PID="/home/web/negos_app/unicorn.pid"
|
PID="/home/web/negos_app/shared/unicorn.pid"
|
||||||
ENV=production
|
ENV=production
|
||||||
|
|
||||||
GEM_HOME="/home/web/.rvm/gems/ruby-$APP_RUBY"
|
GEM_HOME="/home/web/.rvm/gems/ruby-$APP_RUBY"
|
||||||
@ -16,7 +16,7 @@ GEM_HOME="/home/web/.rvm/gems/ruby-$APP_RUBY"
|
|||||||
UNICORN_OPTS="-D -E $ENV -c $APP_ROOT/config/unicorn.rb"
|
UNICORN_OPTS="-D -E $ENV -c $APP_ROOT/config/unicorn.rb"
|
||||||
|
|
||||||
SET_PATH="cd $APP_ROOT; rvm $APP_RUBY"
|
SET_PATH="cd $APP_ROOT; rvm $APP_RUBY"
|
||||||
CMD="$SET_PATH; bundle exec unicorn $UNICORN_OPTS"
|
CMD="$SET_PATH; unicorn $UNICORN_OPTS"
|
||||||
|
|
||||||
old_pid="$PID.oldbin"
|
old_pid="$PID.oldbin"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user