17 lines
620 B
Plaintext
17 lines
620 B
Plaintext
|
|
<IfModule mod_passenger.c>
|
|
PassengerRoot /usr/share/passenger/phusion_passenger/locations.ini
|
|
PassengerDefaultRuby /usr/bin/ruby
|
|
PassengerEnabled off
|
|
PassengerLogFile /var/log/passenger/passenger.log
|
|
|
|
# Avoid downloading of sources or binary for ruby passenger_native_support.so
|
|
# after each apache restart by default because of development packages or
|
|
# libruby.so.X.Y may be missed anyway.
|
|
# Ruby passenger_native_support.so is packaged for system ruby only.
|
|
<IfModule mod_env.c>
|
|
SetEnv PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY 0
|
|
SetEnv PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY 0
|
|
</IfModule>
|
|
</IfModule>
|