mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
14 lines
501 B
Ruby
14 lines
501 B
Ruby
# First, you need to change these below to your situation.
|
|
APP_ROOT = '/home/discourse/discourse'
|
|
|
|
# Second, you can choose how many threads that you are going to run at same time.
|
|
workers 4
|
|
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
|
|
preload_app! |