2017-03-22 17:47:07 -07:00
|
|
|
require 'facter'
|
2015-10-20 11:24:00 -07:00
|
|
|
|
2023-08-19 15:41:32 -05:00
|
|
|
#threads 1, 1
|
2015-10-20 11:24:00 -07:00
|
|
|
environment 'production'
|
2017-03-22 17:47:07 -07:00
|
|
|
#daemonize
|
2015-10-20 11:24:00 -07:00
|
|
|
pidfile '/var/run/neocities/neocities.pid'
|
2018-12-20 05:07:25 +00:00
|
|
|
stdout_redirect '/var/log/neocities/neocities.stdout.log', '/var/log/neocities/neocities.stderr.log', true
|
2015-10-20 11:24:00 -07:00
|
|
|
quiet
|
2023-03-22 13:37:18 +00:00
|
|
|
workers Facter.value('processors')['count']
|
2024-01-04 18:02:53 +00:00
|
|
|
#preload_app!
|
|
|
|
prune_bundler
|
2024-04-16 22:01:41 +00:00
|
|
|
#on_worker_boot { DB.disconnect }
|
2015-10-20 11:24:00 -07:00
|
|
|
bind 'unix:/var/run/neocities/neocities.sock?backlog=2048'
|
2023-08-19 15:41:32 -05:00
|
|
|
supported_http_methods Puma::Const::IANA_HTTP_METHODS
|