### # Do not use this file to override the unicorn cookbook's default # attributes. Instead, please use the customize.rb attributes file, # which will keep your adjustments separate from the AWS OpsWorks # codebase and make it easier to upgrade. # # However, you should not edit customize.rb directly. Instead, create # "unicorn/attributes/customize.rb" in your cookbook repository and # put the overrides in YOUR customize.rb file. # # Do NOT create an 'unicorn/attributes/default.rb' in your cookbooks. Doing so # would completely override this file and might cause upgrade issues. # # See also: http://docs.aws.amazon.com/opsworks/latest/userguide/customizing.html ### include_attribute 'rails::rails' default[:unicorn][:worker_processes] = node[:rails][:max_pool_size] ? node[:rails][:max_pool_size] : 4 default[:unicorn][:backlog] = 1024 default[:unicorn][:timeout] = 60 default[:unicorn][:preload_app] = true default[:unicorn][:version] = '4.7.0' default[:unicorn][:tcp_nodelay] = true default[:unicorn][:tcp_nopush] = false default[:unicorn][:tries] = 5 default[:unicorn][:delay] = 0.5 default[:unicorn][:accept_filter] = "httpready" default[:unicorn][:rack_version] = "1.6.4" include_attribute "unicorn::customize"