Created
January 9, 2014 20:54
-
-
Save jeffjohnson9046/8341816 to your computer and use it in GitHub Desktop.
An example passenger.conf file for setting up a Rails app to run in Phusion Passenger.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The Passanger Apache module configuration file is being | |
# managed by Puppet and changes will be overwritten. | |
<IfModule mod_passenger.c> | |
PassengerRoot /usr/local/rvm/gems/ruby-1.9.3-p484/gems/passenger-3.0.21 | |
PassengerRuby /usr/local/rvm/wrappers/ruby-1.9.3-p484/ruby | |
PassengerMaxPoolSize 30 | |
PassengerPoolIdleTime 300 | |
PassengerDefaultUser appuser # set this to whoever owns the directories for your Rails app | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment