I have a Rails (4.0.13 with Ruby 2.2.3) Elastic Beanstalk app with Phusion Passenger as its application web server.
I'd like to change some of the Passenger config variables. As stated here https://www.phusionpassenger.com/library/config/standalone/intro.html#location-of-passengerfile-json, I need to put a Passengerfile.json
in the app root directory.
However, according to this post https://forums.aws.amazon.com/thread.jspa?threadID=181591, it makes no difference to put the config file there. That, and the fact that I cannot seem to check the passenger variables (passenger-status
doesn't allow me and suggests sudo
, but with sudo
it says sudo: passenger-status: command not found
) has prevented me from trying to put the config file there.
So, how can I check and change the Passenger configuration values?
Thanks!
passenger-standalone.json
is nowPassengerfile.json
in version 5. See release notes – Sendoff