1
0
Fork 0
deploying-rails-app/slides/setup-a-middleware-for-serv...

557 B

Setup a Middleware for Server

  • Retrieve suggested Puma configuration
wget https://raw.githubusercontent.com/puma/puma/master/tools/jungle/upstart/puma-manager.conf
wget https://raw.githubusercontent.com/puma/puma/master/tools/jungle/upstart/puma.conf
  • Update puma.conf
setuid app
setgid app
  • Add configuration to bash execution
export SECRET_KEY_BASE="YOUR_SECRET_KEY_HERE"
  • Deploy startup files
sudo cp puma.conf puma-manager.conf /etc/init
  • Configure Puma (/etc/puma.conf)
/home/app/jokes

note: