No results found in makandra dev.
Best results in other decks
With passenger-status --show=requests you can get a huge JSON showing current information about the running passenger processes. This can be useful if you want to find out what...
...running request or is stuck. You can search for the PID of the process in passenger-status --show=requests: # (this is just a snippet) "last_data_receive_time" : { "local" : "Wed...
Our Rails deployments are run by passenger on the application servers, to automatically restart passenger workers after a deploy you should include the capistrano-passenger Gem in your Gemfile by...
...adding this line: gem 'capistrano-passenger', require: false And install it by calling bundle: $ bundle To actually be able to use the tasks this Gem provides you have to also...