Sha256: acae383286476260b1b5a319507b6b9e32f7e0c04479cde7cc73804d6e695c82
Contents?: true
Size: 1.1 KB
Versions: 3
Compression:
Stored size: 1.1 KB
Contents
begin # Needed for Puma 5 + puma-damon, but built in to Puma 4 # https://github.com/kigster/puma-daemon require 'puma/daemon' rescue LoadError => e # Puma 4 has `daemonize` built in end # Change to match your CPU core count workers {{puma_workers}} # Min and Max threads per worker threads {{puma_min_threads}}, {{puma_max_threads}} app_dir = "/u/apps/{{project_name}}/current" directory app_dir rails_env = "{{rails_env}}" environment rails_env # Set up socket location bind "tcp://127.0.0.1:9292" # Logging stdout_redirect "#{app_dir}/log/puma.stdout.log", "#{app_dir}/log/puma.stderr.log", true # Set master PID and state locations daemonize pidfile "/u/apps/{{project_name}}/shared/tmp/pids/puma.pid" state_path "/u/apps/{{project_name}}/shared/tmp/pids/puma.state" activate_control_app on_worker_boot do require "active_record" ActiveRecord::Base.connection.disconnect! rescue ActiveRecord::ConnectionNotEstablished ActiveRecord::Base.establish_connection(YAML.load_file("#{app_dir}/config/database.yml")[rails_env]) end # Allow puma to be restarted by `rails restart` command. plugin :tmp_restart
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
subspace-2.5.10 | ansible/roles/puma/templates/puma.rb |
subspace-2.5.9 | ansible/roles/puma/templates/puma.rb |
subspace-2.5.8 | ansible/roles/puma/templates/puma.rb |