Sha256: 1137f25aafd7a590e88bc27b71e4def8e908acc090e805942586f07cb759254c
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
require 'capistrano3/unicorn_nginx/helpers' include Capistrano3::UnicornNginx::Helpers namespace :load do task :defaults do set :nginx_listen_port, 80 set :nginx_server_name, "_" set :nginx_upstream_name, -> { "#{fetch(:application)}" } set :nginx_config_name, -> { "#{fetch(:application)}_#{fetch(:stage)}" } set :nginx_fail_timeout, 0 set :nginx_access_log_file, -> { "#{shared_path}/#{fetch(:nginx_config_name)}.access.log" } set :nginx_error_log_file, -> { "#{shared_path}/#{fetch(:nginx_config_name)}.error.log" } set :nginx_upstream_file, -> { "#{fetch(:unicorn_sock_path)}" } set :nginx_config_path, -> { nginx_config_file } set :templates_path, 'config/deploy/templates' end end namespace :nginx do desc 'Setup nginx configuration' task :setup do on roles :web do sudo_upload! template('nginx_conf.erb'), fetch(:nginx_config_path) end end %w[stop start restart reload].each do |action| desc "#{action} nginx" task action do on roles :web do sudo :service, "nginx", action end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
capistrano3-unicorn-nginx-0.1.1 | lib/capistrano3/tasks/nginx.rake |
capistrano3-unicorn-nginx-0.1.0 | lib/capistrano3/tasks/nginx.rake |