When I run the command:

./passenger-install-nginx-module

It asks me a bunch of questions when I am SSH'd into my server.

I want to automate this process, how can I do that if it requires specific answers during the installation?

I'm running ubuntu 10.10

link|improve this question

51% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Depending on your version of passenger, you should ether be able to do

yes | passenger-install-nginx-module

(for version 2.0.x) or

passenger-install-nginx-module --auto

for version >2.1

Source: http://groups.google.com/group/phusion-passenger/browse_thread/thread/7ef77828326daeee?pli=1

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.