0

Is it possible to install passenger into nginx that has been installed previously using yum?

I need to provide a directory prefix for the install-nginx-module, just wondering where that would be on Centos?

passenger-install-nginx-module  --auto-download --auto --prefix=$nginx_directory_prefix
Toby Hede
  • 309
  • 5
  • 11

2 Answers2

2

One of the Passenger developers provides a yum repository for RHEL/CentOS. (You need EPEL to use it.) This is probably the easiest way to get up and running.

Michael Hampton
  • 244,070
  • 43
  • 506
  • 972
1

No. Nginx does not support loadable modules. It is impossible to install Phusion Passenger into an existing Nginx binary without recompilation.

Hongli Lai
  • 2,222
  • 4
  • 23
  • 27