pumaのインストール
$ gem install puma
Redmineの設定
config/puma.rbを以下の内容で作成する
app_root = '/opt/redmine' #パスは適宜
directory app_root
environment 'production'
pidfile "#{app_root}/tmp/pids/puma.pid"
state_path "#{app_root}/tmp/pids/puma.state"
bind "unix:#{app_root}/tmp/sockets/redmine.socket"
activate_control_app
> その他設定に関しては本家の説明を https://github.com/puma/