2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-23 22:49:31 -05:00
|
|
|
if ENV["RAILS_ENV"] == "production"
|
|
|
|
# First, you need to change these below to your situation.
|
2022-06-17 11:58:04 -04:00
|
|
|
APP_ROOT = ENV["APP_ROOT"] || "/home/discourse/discourse"
|
2016-02-23 22:49:31 -05:00
|
|
|
num_workers = ENV["NUM_WEBS"].to_i > 0 ? ENV["NUM_WEBS"].to_i : 4
|
|
|
|
|
|
|
|
# Second, you can choose how many threads that you are going to run at same time.
|
|
|
|
workers "#{num_workers}"
|
|
|
|
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"
|
|
|
|
preload_app!
|
|
|
|
end
|