discourse/config/puma.rb

16 lines
583 B
Ruby
Raw Normal View History

2013-11-17 23:53:36 -05:00
# First, you need to change these below to your situation.
APP_ROOT = '/home/discourse/discourse'
2014-02-12 23:08:27 -05:00
num_workers = ENV["NUM_WEBS"].to_i > 0 ? ENV["NUM_WEBS"].to_i : 4
2013-11-17 23:53:36 -05:00
# Second, you can choose how many threads that you are going to run at same time.
2013-11-21 10:00:14 -05:00
workers "#{num_workers}"
2013-11-17 23:53:36 -05:00
threads 8,32
# Unless you know what you are changing, do not change them.
bind "unix://#{APP_ROOT}/tmp/sockets/puma.sock"
stdout_redirect "#{APP_ROOT}/log/puma.log","#{APP_ROOT}/log/puma.err.log"
pidfile "#{APP_ROOT}/tmp/pids/puma.pid"
state_path "#{APP_ROOT}/tmp/pids/puma.state"
daemonize true
2013-11-21 10:00:14 -05:00
preload_app!