sudo -s
Phusion Passenger is an Apache module, which makes deploying Ruby and Ruby on Rails applications on Apache a breeze. It follows the usual Ruby on Rails conventions, such as "Don’t-Repeat-Yourself" and ease of setup, while at the same time providing enough flexibility.
This users guide will teach you:
How to install Phusion Passenger.
How to configure Phusion Passenger.
How to deploy a Ruby on Rails application.
How to deploy a Rack-based Ruby application.
How to solve common problems.
This guide assumes that the reader is somewhat familiar with Apache and with using the commandline.
Phusion Passenger works on any POSIX-compliant operating system. In other words: practically any operating system on earth, except Microsoft Windows.
Phusion Passenger is confirmed on a large number of operating systems and Linux distributions, including, but not limited to, Ubuntu, Debian, CentOS/Fedora/RHEL, Gentoo, Mac OS X, FreeBSD and Solaris. Both 32-bit and 64-bit platforms are supported.
The only POSIX-compliant operating system on which Phusion Passenger for Apache is known not to work at this time, is OpenBSD. Please use Phusion Passenger for Nginx instead.
If Phusion Passenger does not work on your platform then please report a bug or join our discussion list.
There are three ways to install Phusion Passenger:
By installing the Phusion Passenger gem, as instructed on the “Install” page on the Phusion Passenger website.
By downloading the source tarball from the Phusion Passenger website (passenger-x.x.x.tar.gz).
By installing a native Linux package (e.g. Debian package).
The following sections will explain each installation method. Please read the section for the installation method that you prefer. In our opinion, installing the gem or the native package is easiest. For these two installation methods, Phusion Passenger provides an easy-to-use installer.
If you want to install Phusion Passenger via the gem or the source tarball, then some preparations might be required. You can skip this subsection if you’re installing Phusion Passenger via a native Linux package, because no compilation is necessary.
Before installing, you will probably need to switch to the root user first. When you install Phusion Passenger via a gem or a source tarball, some Phusion Passenger files have to be compiled, which requires write access to the directory in which the Phusion Passenger files are located. On Unix systems, the root user is the user who has write access to the entire system. So unless you know that your normal user account has write access to the Phusion Passenger directory, you should switch to root before installing Phusion Passenger.
You can switch to root by typing the following command:
sudo -s
This will open a command prompt as the root user, from which you can proceed with installing Phusion Passenger.
If your system does not have sudo installed, please type the following command instead, which should do the same thing:
su
The Phusion Passenger installer will attempt to automatically detect Apache, and compile Phusion Passenger against that Apache version. It does this by looking for the apxs or apxs2 command in the PATH environment variable. Apxs is an integral part of any Apache installation.
However, some systems have multiple Apache installations. This is likely the case on MacOS X: the OS ships with Apache, but users tend to install another Apache version seperately, e.g. via MacPorts. If your system has multiple Apache installations, then you will need to tell the Phusion Passenger installer which one to use. It is very important that you specify the correct Apache installation, because if you load Phusion Passenger in an Apache installation that it wasn’t compiled against, then it will likely crash.
On yet other systems, Apache is installed in a non-standard location, preventing the Phusion Passenger installer from detecting Apache. This is most likely the case on systems on which Apache was installed by hand from source, i.e. as opposed to installed through the system’s native package manager. If this is the case, then you will also have to tell the installer where it can find Apache.
To do so, set the APXS2 environment variable to the full path of the correct apxs or apxs2 command. Suppose that you want to use the Apache installation in /opt/apache2. Then, assuming that the corresponding apxs program’s path is /opt/apache2/bin/apxs, type:
export APXS2=/opt/apache2/bin/apxs
On some systems, the apxs program might be called apxs2, and it might be located in the sbin folder instead of the bin folder. |
Environment variables and sudo By default, the sudo command will erase any environment variables that it
doesn’t recognize, prior to executing the given command. So if you set APXS2 as a
normal user, then run sudo passenger-install-apache2-module (which is the command
for the Phusion Passenger installer), then the installer will not receive the
environment variable value that you set. To solve this problem, please become root
prior to setting any environment variables, as described in the previous subsection. |
If your system has multiple Ruby installations — which is likely the case on MacOS X, or if you’ve also installed Ruby Enterprise Edition — then you will need to tell the operating system which Ruby installation to use, prior to running the Phusion Passenger installer. If you only have one Ruby installation (the case on most Linux systems), then you can skip this section because Phusion Passenger will automatically detect it.
To specify a Ruby installation, prepend your Ruby installation’s bin directory to the PATH environment variable. For example, if you have the following Ruby installations:
/usr/bin/ruby
/opt/myruby/bin/ruby
and you want to use the latter, then type:
export PATH=/opt/myruby/bin:$PATH
Please install the gem and then run the Phusion Passenger installer, by typing the following commands:
gem install passenger-x.x.x.gem passenger-install-apache2-module
Please follow the instructions given by the installer.
Extract the tarball to whatever location you prefer. The Phusion Passenger files are to reside in that location permanently. For example, if you would like Phusion Passenger to reside in /opt/passenger-x.x.x:
cd /opt tar xzvf ~/YourDownloadsFolder/passenger-x.x.x.tar.gz
Next, run the included installer:
/opt/passenger-x.x.x/bin/passenger-install-apache2-module
Please follow the instructions given by the installer.
Please do not remove the passenger-x.x.x folder after installation. Furthermore, the passenger-x.x.x folder must be accessible by Apache. |
John Leach from Brightbox has kindly provided an Ubuntu Hardy package for Phusion Passenger. The package is available from the Brightbox repository.
Please install the native Linux package, e.g.:
sudo sh -c 'echo "deb http://apt.brightbox.net hardy main" > /etc/apt/sources.list.d/brightbox.list' sudo sh -c 'wget -q -O - http://apt.brightbox.net/release.asc | apt-key add -' sudo apt-get update sudo apt-get install libapache2-mod-passenger
Although we call it an “installer”, it doesn’t actually install anything. The installer checks whether all required dependencies are installed, compiles Phusion Passenger for you, and tells you how to modify the Apache configuration file, but it doesn’t copy any files around.
passenger-install-apache2-module is actually just a user-friendly frontend around the command rake apache2, which performs the actual compilation of Phusion Passenger.
Ben Ruebenstein has written an excellent tutorial on installing Phusion Passenger on OS X.
Ben Hughes has written an article on installing Phusion Passenger on Ubuntu.
J Aaron Farr has written a guide about setting up Ruby on Rails and Phusion Passenger on OpenSolaris and EC2.
To ugrade or downgrade Phusion Passenger via the gem or the source tarball, install the newer or older version as you normally would; that is, install the gem or unpack the tarball, and run passenger-install-apache2-module. Eventually passenger-install-apache2-module will tell you to copy & paste some settings into the Apache configuration file; something that looks along the lines of:
LoadModule passenger_module ... PassengerRoot ... PassengerRuby ...
Because you already have Phusion Passenger installed, you already have the same settings in your Apache configuration file, just with different values. Replace the old settings with the new ones that the installer outputs.
When you’re done, restart Apache.
There are no special instructions required to upgrade or downgrade Phusion Passenger via a native Linux package.
You can temporarily unload (disable) Phusion Passenger from Apache, without uninstalling the Phusion Passenger files, so that Apache behaves as if Phusion Passenger was never installed in the first place. This might be useful to you if, for example, you seem to be experiencing a problem caused by Phusion Passenger, but you want to make sure whether that’s actually the case, without having to through the hassle of uninstalling Phusion Passenger completely.
To unload Phusion Passenger from Apache, edit your Apache configuration file(s) and comment out:
all Phusion Passenger configuration directives.
the LoadModule passenger_module directive.
For example, if your configuration file looks like this…
Listen *:80 NameVirtualHosts *:80 .... LoadModule passenger_module /somewhere/passenger-x.x.x/ext/apache2/mod_passenger.so PassengerRuby /usr/bin/ruby PassengerRoot /somewhere/passenger/x.x.x PassengerMaxPoolSize 10 <VirtualHost *:80> ServerName www.foo.com DocumentRoot /webapps/foo/public RailsBaseURI /rails </VirtualHost>
…then comment out the relevant directives, so that it looks like this:
Listen *:80 NameVirtualHosts *:80 .... # LoadModule passenger_module /somewhere/passenger-x.x.x/ext/apache2/mod_passenger.so # PassengerRuby /usr/bin/ruby # PassengerRoot /somewhere/passenger/x.x.x # PassengerMaxPoolSize 10 <VirtualHost *:80> ServerName www.foo.com DocumentRoot /webapps/foo/public # RailsBaseURI /rails </VirtualHost>
After you’ve done this, save the file and restart Apache.
To uninstall Phusion Passenger, please first remove all Phusion Passenger configuration directives from your Apache configuration file(s). After you’ve done this, you need to remove the Phusion Passenger files.
If you installed Phusion Passenger via a gem, then type gem uninstall passenger. You might have to run this as root.
If you installed Phusion Passenger via a source tarball, then remove the directory in which you placed the extracted Phusion Passenger files. This directory is the same as the one pointed to the by PassengerRoot configuration directive.
If you installed Phusion Passenger via a Debian package, then remove type sudo apt-get remove libapache2-mod-passenger.
Suppose you have a Ruby on Rails application in /webapps/mycook, and you own the domain www.mycook.com. You can either deploy your application to the virtual host’s root (i.e. the application will be accessible from the root URL, http://www.mycook.com/), or in a sub URI (i.e. the application will be accessible from a sub URL, such as http://www.mycook.com/railsapplication).
The default RAILS_ENV environment in which deployed Rails applications are run, is “production”. You can change this by changing the RailsEnv configuration option. |
Add a virtual host entry to your Apache configuration file. The virtual host’s document root must point to your Ruby on Rails application’s public folder. For example:
<VirtualHost *:80> ServerName www.mycook.com DocumentRoot /webapps/mycook/public </VirtualHost>
Then restart Apache. The application has now been deployed.
Suppose that you already have a virtual host:
<VirtualHost *:80> ServerName www.phusion.nl DocumentRoot /websites/phusion </VirtualHost>
And you want your Ruby on Rails application to be accessible from the URL http://www.phusion.nl/rails.
To do this, make a symlink from your Ruby on Rails application’s public folder to a directory in the document root. For example:
ln -s /webapps/mycook/public /websites/phusion/rails
Next, add a RailsBaseURI option to the virtual host configuration:
<VirtualHost *:80> ServerName www.phusion.nl DocumentRoot /websites/phusion RailsBaseURI /rails # This line has been added. </VirtualHost>
Then restart Apache. The application has now been deployed.
If you’re deploying to a sub-URI then please make sure that your view templates correctly handles references to sub-URI static assets! Otherwise you may find broken links to images, CSS files, JavaScripts, etc. Please read How to fix broken images/CSS/JavaScript URIs in sub-URI deployments for more information. |
You can deploy multiple Rails applications under a virtual host, by specifying RailsBaseURI multiple times. For example: <VirtualHost *:80> .... RailsBaseURI /app1 RailsBaseURI /app2 RailsBaseURI /app3 </VirtualHost> |
Deploying a new version of a Ruby on Rails application is as simple as re-uploading the application files, and restarting the application.
There are two ways to restart the application:
By restarting Apache.
By creating or modifying the file tmp/restart.txt in the Rails application’s root folder. Phusion Passenger will automatically restart the application during the next request.
For example, to restart our example MyCook application, we type this in the command line:
touch /webapps/mycook/tmp/restart.txt
Please note that, unlike earlier versions of Phusion Passenger, restart.txt is not automatically deleted. Phusion Passenger checks whether the timestamp of this file has changed in order to determine whether the application should be restarted.
Phusion Passenger is not related to Ruby on Rails migrations in any way. To run migrations on your deployment server, please login to your deployment server (e.g. with ssh) and type rake db:migrate RAILS_ENV=production in a shell console, just like one would normally run migrations.
See Capistrano recipe.
Phusion Passenger supports arbitrary Ruby web applications that follow the Rack interface.
Phusion Passenger assumes that Rack application directories have a certain layout. Suppose that you have a Rack application in /webapps/rackapp. Then that folder must contain at least three entries:
config.ru, a Rackup file for starting the Rack application. This file must contain the complete logic for initializing the application.
public/, a folder containing public static web assets, like images and stylesheets.
tmp/, used for restart.txt (our application restart mechanism). This will be explained in a following subsection.
So /webapps/rackapp must, at minimum, look like this:
/webapps/rackapp | +-- config.ru | +-- public/ | +-- tmp/
Suppose you own the domain www.rackapp.com. You can either deploy your application to the virtual host’s root (i.e. the application will be accessible from the root URL, http://www.rackapp.com/), or in a sub URI (i.e. the application will be accessible from a sub URL, such as http://www.rackapp.com/rackapp).
The default RACK_ENV environment in which deployed Rack applications are run, is “production”. You can change this by changing the RackEnv configuration option. |
First we create a Phusion Passenger-compliant Rack directory structure:
$ mkdir /webapps/rack_example $ mkdir /webapps/rack_example/public $ mkdir /webapps/rack_example/tmp
Next, we write a minimal "hello world" Rack application:
$ cd /webapps/rack_example $ some_awesome_editor config.ru ...type in some source code... $ cat config.ru app = proc do |env| [200, { "Content-Type" => "text/html" }, ["hello <b>world</b>"]] end run app
Finally, we deploy it by adding the following configuration options to the Apache configuration file:
<VirtualHost *:80> ServerName www.rackexample.com DocumentRoot /webapps/rack_example/public </VirtualHost>
And we’re done! After an Apache restart, the above Rack application will be available under the URL http://www.rackexample.com/.
Add a virtual host entry to your Apache configuration file. The virtual host’s document root must point to your Rack application’s public folder. For example:
<VirtualHost *:80> ServerName www.rackapp.com DocumentRoot /webapps/rackapp/public </VirtualHost>
Then restart Apache. The application has now been deployed.
Suppose that you already have a virtual host:
<VirtualHost *:80> ServerName www.phusion.nl DocumentRoot /websites/phusion </VirtualHost>
And you want your Rack application to be accessible from the URL http://www.phusion.nl/rack.
To do this, make a symlink from your Rack application’s public folder to a directory in the document root. For example:
ln -s /webapps/rackapp/public /websites/phusion/rack
Next, add a RackBaseURI option to the virtual host configuration:
<VirtualHost *:80> ServerName www.phusion.nl DocumentRoot /websites/phusion RackBaseURI /rack # This line has been added. </VirtualHost>
Then restart Apache. The application has now been deployed.
You can deploy multiple Rack applications under a virtual host, by specifying RackBaseURI multiple times. For example: <VirtualHost *:80> .... RackBaseURI /app1 RackBaseURI /app2 RackBaseURI /app3 </VirtualHost> |
Deploying a new version of a Rack application is as simple as re-uploading the application files, and restarting the application.
There are two ways to restart the application:
By restarting Apache.
By creating or modifying the file tmp/restart.txt in the Rack application’s root folder. Phusion Passenger will automatically restart the application.
For example, to restart our example application, we type this in the command line:
touch /webapps/rackapp/tmp/restart.txt
This subsection shows example config.ru files for various web frameworks.
require 'rubygems' require 'rack' require 'camping' ##### Begin Camping application Camping.goes :Blog ...your application code here... ##### End Camping application run Rack::Adapter::Camping.new(Blog)
For Camping versions 2.0 and up, using run Blog as the final line will do.
require 'rubygems' require 'halcyon' $LOAD_PATH.unshift(Halcyon.root / 'lib') Halcyon::Runner.load_config Halcyon.root/'config'/'config.yml' run Halcyon::Runner.new
ENV["MACK_ENV"] = ENV["RACK_ENV"] load("Rakefile") require 'rubygems' require 'mack' run Mack::Utils::Server.build_app
require 'rubygems' require 'merb-core' Merb::Config.setup( :merb_root => ::File.expand_path(::File.dirname(__FILE__)), :environment => ENV['RACK_ENV'] ) Merb.environment = Merb::Config[:environment] Merb.root = Merb::Config[:merb_root] Merb::BootLoader.run run Merb::Rack::Application.new
require "rubygems" require "ramaze" Ramaze.trait[:essentials].delete Ramaze::Adapter require "start" Ramaze.start! run Ramaze::Adapter::Base
require 'rubygems' require 'sinatra' require 'app.rb' run Sinatra::Application
After installation, Phusion Passenger does not need any further configurations. Nevertheless, the system administrator may be interested in changing Phusion Passenger’s behavior. Phusion Passenger’s Apache module supports the following configuration options:
The location to the Phusion Passenger root directory. This configuration option is essential to Phusion Passenger, and allows Phusion Passenger to locate its own data files. The correct value is given by the installer.
If you’ve moved Phusion Passenger to a different directory then you need to update this option as well. Please read Moving Phusion Passenger to a different directory for more information.
This required option may only occur once, in the global server configuration.
This option allows one to specify how much information Phusion Passenger should write to the Apache error log file. A higher log level value means that more information will be logged.
Possible values are:
0: Show only errors and warnings.
1: Show the most important debugging information. This might be useful for system administrators who are trying to figure out the cause of a problem.
2: Show more debugging information. This is typically only useful for developers.
3: Show even more debugging information.
This option may only occur once, in the global server configuration. The default is 0.
This option allows one to specify the Ruby interpreter to use.
This option may only occur once, in the global server configuration. The default is ruby.
By default, Phusion Passenger assumes that the application’s root directory is the parent directory of the public directory. This option allows one to specify the application’s root independently from the DocumentRoot, which is useful if the public directory lives in a non-standard place.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess, if AllowOverride Options is on.
In each place, it may be specified at most once.
Example:
<VirtualHost test.host> DocumentRoot /var/rails/zena/sites/example.com/public PassengerAppRoot /var/rails/zena # <-- normally Phusion Passenger would # have assumed that the application # root is "/var/rails/zena/sites/example.com" </VirtualHost>
Turns the use of global queuing on or off.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In each place, it may be specified at most once. The default value is off.
This feature is sponsored by 37signals.
Recall that Phusion Passenger spawns multiple backend processes (e.g. multiple Ruby on Rails processes), each which processes HTTP requests serially. One of Phusion Passenger’s jobs is to forward HTTP requests to a suitable backend process. A backend process may take an arbitrary amount of time to process a specific HTTP request. If the websites are (temporarily) under high load, and the backend processes cannot process the requests fast enough, then some requests may have to be queued.
If global queuing is turned off, then Phusion Passenger will use fair load balancing. This means that each backend process will have its own private queue. Phusion Passenger will forward an HTTP request to the backend process that has the least amount of requests in its queue.
If global queuing is turned on, then Phusion Passenger will use a global queue that’s shared between all backend processes. If an HTTP request comes in, and all the backend processes are still busy, then Phusion Passenger will wait until at least one backend process is done, and will then forward the request to that process.
You should turn on global queuing if one of your web applications may have long-running requests.
For example suppose that:
global queuing is turned off.
we’re currently in a state where all backend processes have 3 requests in their queue, except for a single backend process, which has 1 request in its queue.
The situation looks like this:
Backend process A: [* ] (1 request in queue) Backend process B: [*** ] (3 requests in queue) Backend process C: [*** ] (3 requests in queue) Backend process D: [*** ] (3 requests in queue)
Each process is currently serving short-running requests.
Phusion Passenger will forward the next request to backend process A. A will now have 2 items in its queue. We’ll mark this new request with an X:
Backend process A: [*X ] (2 request in queue) Backend process B: [*** ] (3 requests in queue) Backend process C: [*** ] (3 requests in queue) Backend process D: [*** ] (3 requests in queue)
Assuming that B, C and D still aren’t done with their current request, the next HTTP request - let’s call this Y - will be forwarded to backend process A as well, because it has the least number of items in its queue:
Backend process A: [*XY ] (3 requests in queue) Backend process B: [*** ] (3 requests in queue) Backend process C: [*** ] (3 requests in queue) Backend process D: [*** ] (3 requests in queue)
But if request X happens to be a long-running request that needs 60 seconds to complete, then we’ll have a problem. Y won’t be processed for at least 60 seconds. It would have been a better idea if Y was forward to processes B, C or D instead, because they only have short-living requests in their queues.
This problem will be avoided entirely if you turn global queuing on. With global queuing, all backend processes will share the same queue. The first backend process that becomes available will take from the queue, and so this “queuing-behind-long-running-request” problem will never occur.
Turning global queuing off will yield a minor performance improvement (about 5%, depending on how fast/slow your web application is), which is why it’s off by default.
Whether to enable user switching support.
This option may only occur once, in the global server configuration. The default value is on.
Phusion Passenger enables user switching support by default. This configuration option allows one to specify which user Rails/Rack applications must run as, if user switching fails or is disabled.
This option may only occur once, in the global server configuration. The default value is nobody.
By default, Phusion Passenger is compatible with mod_rewrite and most other Apache modules. However, a lot of effort is required in order to be compatible. If you turn PassengerHighPerformance to on, then Phusion Passenger will be a little faster, in return for reduced compatibility with other Apache modules.
In places where PassengerHighPerformance is turned on, mod_rewrite rules will likely not work. mod_autoindex (the module which displays a directory index) will also not work. Other Apache modules may or may not work, depending on what they exactly do. We recommend you to find out how other modules behave in high performance mode via testing.
This option is not an all-or-nothing global option: you can enable high performance mode for certain virtual hosts or certain URLs only. The PassengerHighPerformance option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess.
In each place, it may be specified at most once. The default value is off, so high performance mode is disabled by default, and you have to explicitly enable it.
If you do not use mod_rewrite or other Apache modules then it might make sense to enable high performance mode.
It’s likely that some of your applications depend on mod_rewrite or other Apache modules, while some do not. In that case you can enable high performance for only those applications that don’t use other Apache modules. For example:
<VirtualHost *:80> ServerName www.foo.com DocumentRoot /apps/foo/public .... mod_rewrite rules or options for other Apache modules here ... </VirtualHost> <VirtualHost *:80> ServerName www.bar.com DocumentRoot /apps/bar/public PassengerHighPerformance on </VirtualHost>
In the above example, high performance mode is only enabled for www.bar.com. It is disabled for everything else.
If your application generally depends on mod_rewrite or other Apache modules, but a certain URL that’s accessed often doesn’t depend on those other modules, then you can enable high performance mode for a certain URL only. For example:
<VirtualHost *:80> ServerName www.foo.com DocumentRoot /apps/foo/public .... mod_rewrite rules or options for other Apache modules here ... <Location /chatroom/ajax_update_poll> PassengerHighPerformance on </Location> </VirtualHost>
This enables high performance mode for http://www.foo.com/chatroom/ajax_update_poll only.
You can set this option to off to completely disable Phusion Passenger for a certain location. This is useful if, for example, you want to integrate a PHP application into the same virtual host as a Rails application.
Suppose that you have a Rails application in /apps/foo. Suppose that you’ve dropped Wordpress — a blogging application written in PHP — in /apps/foo/public/wordpress. You can then configure Phusion Passenger as follows:
<VirtualHost *:80> ServerName www.foo.com DocumentRoot /apps/foo/public <Directory /apps/foo/public/wordpress> PassengerEnabled off AllowOverride all # <-- Makes Wordpress's .htaccess file work. </Directory> </VirtualHost>
This way, Phusion Passenger will not interfere with Wordpress.
PassengerEnabled may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess.
In each place, it may be specified at most once. The default value is on.
Specifies the directory that Phusion Passenger should use for storing temporary files. This includes things such as Unix socket files, buffered file uploads (see also PassengerUploadBufferDir), etc.
This option may be specified once, in the global server configuration. The default temp directory that Phusion Passenger uses is /tmp.
This option is especially useful if Apache is not allowed to write to /tmp (which is the case on some systems with strict SELinux policies) or if the partition that /tmp lives on doesn’t have enough disk space.
Some Phusion Passenger command line administration tools, such as passenger-status, must know what Phusion Passenger’s temp directory is in order to function properly. You can pass the directory through the PASSENGER_TMPDIR environment variable, or the TMPDIR environment variable (the former will be used if both are specified).
For example, if you set PassengerTempDir to /my_temp_dir, then invoke passenger-status after you’ve set the PASSENGER_TMPDIR or TMPDIR environment variable, like this:
export PASSENGER_TMPDIR=/my_temp-dir sudo -E passenger-status # The -E option tells 'sudo' to preserve environment variables.
Phusion Passenger buffers large file uploads to disk in order prevent slow file uploads from blocking web applications. By default, a subdirectory in the system’s temporary files directory (or a subdirectory in the directory specified in PassengerTempDir, if set) is automatically created for storing these buffered file uploads.
This configuration directive allows you to specify a different directory for storing buffered file uploads. If you’ve specified such a directory (as opposed to using Phusion Passenger’s default) then you must ensure that this directory exists.
This configuration directive is also useful if you’re using apache2-mpm-itk. The buffered file upload directory that Phusion Passenger creates by default has very strict permissions: it can only be accessed by the Apache worker processes. However, Phusion Passenger assumes that all Apache worker processes are running as the same user. apache2-mpm-itk breaks this assumption by running multiple Apache worker processes as different users. So if you’re using apace2-mpm-itk, you should set this option to a directory that is writable by all Apache worker processes, such as /tmp.
You may specify PassengerUploadBufferDir in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess, if AllowOverrides Options is enabled.
In each place, it may be specified at most once.
As described in the deployment chapters of this document, Phusion Passenger checks the file tmp/restart.txt in the applications' root directory for restarting applications. Sometimes it may be desirable for Phusion Passenger to look in a different directory instead, for example for security reasons (see below). This option allows you to customize the directory in which restart.txt is searched for.
You may specify PassengerRestartDir in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess, if AllowOverrides Options is enabled.
In each place, it may be specified at most once.
You can either set it to an absolute directory, or to a directory relative to the application root. Examples:
<VirtualHost *:80> ServerName www.foo.com # Phusion Passenger will check for /apps/foo/public/tmp/restart.txt DocumentRoot /apps/foo/public </VirtualHost> <VirtualHost *:80> ServerName www.bar.com DocumentRoot /apps/bar/public # An absolute filename is given; Phusion Passenger will # check for /restart_files/bar/restart.txt PassengerRestartDir /restart_files/bar </VirtualHost> <VirtualHost *:80> ServerName www.baz.com DocumentRoot /apps/baz/public # A relative filename is given; Phusion Passenger will # check for /apps/baz/restart_files/restart.txt # # Note that this directory is relative to the APPLICATION ROOT, *not* # the value of DocumentRoot! PassengerRestartDir restart_files </VirtualHost>
Touching restart.txt will cause Phusion Passenger to restart the application. So anybody who can touch restart.txt can effectively cause a Denial-of-Service attack by touching restart.txt over and over. If your web server or one of your web applications has the permission to touch restart.txt, and one of them has a security flaw which allows an attacker to touch restart.txt, then that will allow the attacker to cause a Denial-of-Service.
You can prevent this from happening by pointing PassengerRestartDir to a directory that’s readable by Apache, but only writable by administrators.
The maximum number of Ruby on Rails or Rack application instances that may be simultaneously active. A larger number results in higher memory usage, but improved ability to handle concurrent HTTP clients.
The optimal value depends on your system’s hardware and the server’s average load. You should experiment with different values. But generally speaking, the value should be at least equal to the number of CPUs (or CPU cores) that you have. If your system has 2 GB of RAM, then we recommend a value of 30. If your system is a Virtual Private Server (VPS) and has about 256 MB RAM, and is also running other services such as MySQL, then we recommend a value of 2.
If you find that your server is unable to handle the load on your Rails/Rack websites (i.e. running out of memory) then you should lower this value. (Though if your sites are really that popular, then you should strongly consider upgrading your hardware or getting more servers.)
This option may only occur once, in the global server configuration. The default value is 6.
We strongly recommend you to use Ruby Enterprise Edition. This allows you to reduce the memory usage of your Ruby on Rails applications by about 33%. And it’s not hard to install. |
The maximum number of application instances that may be simultaneously active for a single application. This helps to make sure that a single application will not occupy all available slots in the application pool.
This value must be less than PassengerMaxPoolSize. A value of 0 means that there is no limit placed on the number of instances a single application may use, i.e. only the global limit of PassengerMaxPoolSize will be enforced.
This option may only occur once, in the global server configuration. The default value is 0.
The maximum number of seconds that an application instance may be idle. That is, if an application instance hasn’t received any traffic after the given number of seconds, then it will be shutdown in order to conserve memory.
Decreasing this value means that applications will have to be spawned more often. Since spawning is a relatively slow operation, some visitors may notice a small delay when they visit your Rails/Rack website. However, it will also free up resources used by applications more quickly.
The optimal value depends on the average time that a visitor spends on a single Rails/Rack web page. We recommend a value of 2 * x, where x is the average number of seconds that a visitor spends on a single Rails/Rack web page. But your mileage may vary.
When this value is set to 0, application instances will not be shutdown unless it’s really necessary, i.e. when Phusion Passenger is out of worker processes for a given application and one of the inactive application instances needs to make place for another application instance. Setting the value to 0 is recommended if you’re on a non-shared host that’s only running a few applications, each which must be available at all times.
This option may only occur once, in the global server configuration. The default value is 300.
The maximum number of requests an application instance will process. After serving that many requests, the application instance will be shut down and Phusion Passenger will restart it. A value of 0 means that there is no maximum: an application instance will thus be shut down when its idle timeout has been reached.
This option is useful if your application is leaking memory. By shutting it down after a certain number of requests, all of its memory is guaranteed to be freed by the operating system.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess, if AllowOverride Limits is on.
In each place, it may be specified at most once. The default value is 0.
The PassengerMaxRequests directive should be considered as a workaround for misbehaving applications. It is advised that you fix the problem in your application rather than relying on these directives as a measure to avoid memory leaks. |
By default, Phusion Passenger performs several filesystem checks (or, in programmers jargon, stat() calls) each time a request is processed:
It checks whether config/environment.rb, config.ru or passenger_wsgi.py is present, in order to autodetect Rails, Rack and WSGI applications.
It checks whether restart.txt has changed or whether always_restart.txt exists, in order to determine whether the application should be restarted.
On some systems where disk I/O is expensive, e.g. systems where the harddisk is already being heavily loaded, or systems where applications are stored on NFS shares, these filesystem checks can incur a lot of overhead.
You can decrease or almost entirely eliminate this overhead by setting PassengerStatThrottleRate. Setting this option to a value of x means that the above list of filesystem checks will be performed at most once every x seconds. Setting it to a value of 0 means that no throttling will take place, or in other words, that the above list of filesystem checks will be performed on every request.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess, if AllowOverride Limits is on.
In each place, it may be specified at most once. The default value is 0.
Whether Phusion Passenger should automatically detect whether a virtual host’s document root is a Ruby on Rails application. The default is on.
This option may occur in the global server configuration or in a virtual host configuration block.
For example, consider the following configuration:
RailsAutoDetect off <VirtualHost *:80> ServerName www.mycook.com DocumentRoot /webapps/mycook/public </VirtualHost>
If one goes to http://www.mycook.com/, the visitor will see the contents of the /webapps/mycook/public folder, instead of the output of the Ruby on Rails application.
It is possible to explicitly specify that the host is a Ruby on Rails application by using the RailsBaseURI configuration option:
RailsAutoDetect off <VirtualHost *:80> ServerName www.mycook.com DocumentRoot /webapps/mycook/public RailsBaseURI / # This line has been added. </VirtualHost>
Used to specify that the given URI is a Rails application. See Deploying Rails to a sub URI for an example.
It is allowed to specify this option multiple times. Do this to deploy multiple Rails applications in different sub-URIs under the same virtual host.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess, if AllowOverride Options is on.
This option allows one to specify the default RAILS_ENV value.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess, if AllowOverride Options is on.
In each place, it may be specified at most once. The default value is production.
"What spawn method should I use?"
This subsection attempts to describe spawn methods, but it’s okay if you don’t (want to) understand it, as it’s mostly a technical detail. You can basically follow this rule of thumb: However, we do recommend you to try to understand it. The smart and smart-lv2 spawn methods bring many benefits. |
Internally, Phusion Passenger spawns multiple Ruby on Rails processes in order to handle requests. But there are multiple ways with which processes can be spawned, each having its own set of pros and cons. Supported spawn methods are:
When this spawn method is used, Phusion Passenger will attempt to cache Ruby on Rails framework code and application code for a limited period of time. Please read Spawning methods explained for a more detailed explanation of what smart spawning exactly does.
Pros: This can significantly decrease spawn time (by as much as 90%). And, when Ruby Enterprise Edition is used, memory usage can be reduced by 33% on average.
Cons: Some Ruby on Rails applications and libraries are not compatible with smart spawning. If that’s the case for your application, then you should use conservative as spawning method.
This spawning method is similar to smart but it skips the framework spawner and uses the application spawner directly. This means the framework code is not cached between multiple applications, although it is still cached within instances of the same application. Please read Spawning methods explained for a more detailed explanation of what smart-lv2 spawning exactly does.
Pros: It is compatible with a larger number of applications when compared to the smart method, and still performs some caching.
Cons: It is slower than smart spawning if you have many applications which use the same framework version. It is therefore advised that shared hosts use the smart method instead.
This spawning method is similar to the one used in Mongrel Cluster. It does not perform any code caching at all. Please read Spawning methods explained for a more detailed explanation of what conservative spawning exactly does.
Pros: Conservative spawning is guaranteed to be compatible with all Rails applications and libraries.
Cons: Much slower than smart spawning. Every spawn action will be equally slow, though no slower than the startup time of a single server in Mongrel Cluster. Conservative spawning will also render Ruby Enterprise Edition’s memory reduction technology useless.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In each place, it may be specified at most once. The default value is smart-lv2.
The FrameworkSpawner server (explained in Spawning methods explained) has an idle timeout, just like the backend processes spawned by Phusion Passenger do. That is, it will automatically shutdown if it hasn’t done anything for a given period.
This option allows you to set the FrameworkSpawner server’s idle timeout, in seconds. A value of 0 means that it should never idle timeout.
Setting a higher value will mean that the FrameworkSpawner server is kept around longer, which may slightly increase memory usage. But as long as the FrameworkSpawner server is running, the time to spawn a Ruby on Rails backend process only takes about 40% of the time that is normally needed, assuming that you’re using the smart spawning method. So if your system has enough memory, is it recommended that you set this option to a high value or to 0.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In each place, it may be specified at most once. The default value is 1800 (30 minutes).
The ApplicationSpawner server (explained in Spawning methods explained) has an idle timeout, just like the backend processes spawned by Phusion Passenger do. That is, it will automatically shutdown if it hasn’t done anything for a given period.
This option allows you to set the ApplicationSpawner server’s idle timeout, in seconds. A value of 0 means that it should never idle timeout.
Setting a higher value will mean that the ApplicationSpawner server is kept around longer, which may slightly increase memory usage. But as long as the ApplicationSpawner server is running, the time to spawn a Ruby on Rails backend process only takes about 10% of the time that is normally needed, assuming that you’re using the smart or smart-lv2 spawning method. So if your system has enough memory, is it recommended that you set this option to a high value or to 0.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In each place, it may be specified at most once. The default value is 600 (10 minutes).
Whether Phusion Passenger should automatically detect whether a virtual host’s document root is a Rack application. The default is on.
This option may occur in the global server configuration or in a virtual host configuration block.
For example, consider the following configuration:
RackAutoDetect off <VirtualHost *:80> ServerName www.rackapp.com DocumentRoot /webapps/my_rack_app/public </VirtualHost>
If one goes to http://www.rackapp.com/, the visitor will see the contents of the /webapps/my_rack_app/public folder, instead of the output of the Rack application.
It is possible to explicitly specify that the host is a Rack application by using the RackBaseURI configuration option:
RackAutoDetect off <VirtualHost *:80> ServerName www.rackapp.com DocumentRoot /webapps/my_rack_app/public RackBaseURI / # This line was added </VirtualHost>
Used to specify that the given URI is a Rack application. See Deploying Rack to a sub URI for an example.
It is allowed to specify this option multiple times. Do this to deploy multiple Rack applications in different sub-URIs under the same virtual host.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess, if AllowOverride Options is on.
The given value will be accessible in Rack applications in the RACK_ENV environment variable. This allows one to define the environment in which Rack applications are run, very similar to RAILS_ENV.
This option may occur in the following places:
In the global server configuration.
In a virtual host configuration block.
In a <Directory> or <Location> block.
In .htaccess, if AllowOverride Options is on.
In each place, it may be specified at most once. The default value is production.
The following options have been deprecated, but are still supported for backwards compatibility reasons.
Deprecated in favor of PassengerRuby.
Deprecated in favor of PassengerUserSwitching.
Deprecated in favor of PassengerDefaultUser.
This option doesn’t do anything anymore in recent versions of Phusion Passenger.
Your MAMP installation seems to be broken. In particular, config_vars.mk is missing. Please read this forum topic to learn how to fix this problem.
See also this bug report.
Phusion Passenger makes use of a native extension, so the Ruby development headers must be installed. On most Linux systems, Ruby and the Ruby development headers are contained in separate packages, so having Ruby installed does not automatically imply having the development headers installed.
Here’s how you can install the development headers:
Please type:
sudo apt-get install ruby1.8-dev
Please type:
su -c 'yum install ruby-devel'
Please install Ruby from ports or with pkg_add. If that fails, please install Ruby from source.
Please install Ruby from source.
Please consult your operating system’s native package database. There should be a package containing the Ruby development headers. If that fails, please install Ruby from source.
If you’ve installed a new Ruby version (i.e. your system now contains multiple Ruby installations), then you will need to tell Phusion Passenger which Ruby installation you want to use. Please read Specifying the correct Ruby installation. |
Please type:
sudo apt-get install apache2-prefork-dev
Please type:
sudo apt-get install apache2-dev
Please type:
su -c 'yum install httpd-devel'
Please install Apache from ports or with pkg_add. If that fails, please install Apache from source.
Please install Apache from source.
Please consult your operating system’s native package database. There should be a package containing the Apache development headers. If that fails, please install Apache from source.
Please type:
sudo apt-get install libapr1-dev
Please type:
sudo apt-get install libapr1-dev
Please type:
su -c 'yum install apr-devel'
Please consult your distribution’s package database. There should be a package which provides APR development headers.
The APR development are bundled with Apache. If the APR headers aren’t, then it probably means that they have been removed after Apache’s been installed. Please reinstall Apache to get back the APR headers.
Please Specifying the correct Apache installation, and re-run the Phusion Passenger installer.
Please Specifying the correct Ruby installation, and re-run the Phusion Passenger installer.
The golden tip: read your Apache error logs!
mod_passenger will write all errors to the Apache error log. So if you’re experiencing post-installation problems, please look inside the Apache error logs. It will tell you what exactly went wrong. |
Please try setting RailsSpawnMethod to conservative.
This problem is most likely to occur on MacOS X. Most OS X users have multiple Apache installations on their system.
To solve this problem, please specify the correct Apache installation, and reinstall Phusion Passenger.
See next subsection.
Static assets are accelerated, i.e. they are served directly by Apache and do not go through the Rails stack. There are two reasons why Apache doesn’t serve static assets correctly:
Your Apache configuration is too strict, and does not allow HTTP clients to access static assets. This can be achieved with an Allow from all directive in the correct place. For example:
<Directory "/webapps/mycook/public"> Options FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory>
See also this discussion.
The Apache process doesn’t have permission to access your Rails application’s folder. Please make sure that the Rails application’s folder, as well as all of its parent folders, have the correct permissions and/or ownerships.
If you are sure that the PassengerRoot configuration option is set correctly, then this problem is most likely caused by the fact that you’re running Apache with SELinux. On Fedora, CentOS and RedHat Enterprise Linux, Apache is locked down by SELinux policies.
To solve this problem, you must set some permissions on the Phusion Passenger files and folders, so that Apache can access them.
If you’ve installed Phusion Passenger via a gem, then run this command to determine Phusion Passenger’s root folder:
passenger-config --root
Next, run the following command:
chcon -R -h -t httpd_sys_content_t /path-to-passenger-root
where /path-to-passenger-root should be replaced with whatever passenger-config --root printed.
If you’ve installed Phusion Passenger via the source tarball, then run the following command:
chcon -R -h -t httpd_sys_content_t /path/to/passenger/folder
Once the permissions are fixed, restart Apache.
Please check whether your Rails application’s folder has the correct permissions. By default, Rails applications are started as the owner of the file config/environment.rb, except if the file is owned by root. If the file is owned by root, then the Rails application will be started as nobody (or as the user specify by RailsDefaultUser, if that’s specified).
Please read User switching (security) for details.
There are a couple things that you should be aware of:
By default, Phusion Passenger runs Rails applications in production mode, so please be sure to check production.log instead of development.log. See RailsEnv for configuration.
By default, Phusion Passenger runs Rails applications as the owner of environment.rb. So the log file can only be written to if that user has write permission to the log file. Please chmod or chown your log file accordingly.
See User switching (security) for details.
If you’re using a RedHat-derived Linux distribution (such as Fedora or CentOS) then it is possible that SELinux is interfering. RedHat’s SELinux policy only allows Apache to read/write directories that have the httpd_sys_content_t security context. Please run the following command to give your Rails application folder that context:
chcon -R -h -t httpd_sys_content_t /path/to/your/rails/app
mod_userdir is not compatible with Phusion Passenger at the moment.
VirtualDocumentRoot is not compatible with Phusion Passenger at the moment.
Phusion Passenger provides a set of tools, which are useful for system analysis, maintenance and troubleshooting.
Process inspection tools such as ps and top are useful, but they rarely show the correct memory usage. The real memory usage is usually lower than what ps and top report.
There are many technical reasons why this is so, but an explanation is beyond the scope of this Users Guide. We kindly refer the interested reader to operating systems literature about virtual memory and copy-on-write.
The tool passenger-memory-stats allows one to easily analyze Phusion Passenger’s and Apache’s real memory usage. For example:
[bash@localhost root]# passenger-memory-stats ------------- Apache processes --------------. PID PPID Threads VMSize Private Name ---------------------------------------------. 5947 1 9 90.6 MB 0.5 MB /usr/sbin/apache2 -k start 5948 5947 1 18.9 MB 0.7 MB /usr/sbin/fcgi-pm -k start 6029 5947 1 42.7 MB 0.5 MB /usr/sbin/apache2 -k start 6030 5947 1 42.7 MB 0.5 MB /usr/sbin/apache2 -k start 6031 5947 1 42.5 MB 0.3 MB /usr/sbin/apache2 -k start 6033 5947 1 42.5 MB 0.4 MB /usr/sbin/apache2 -k start 6034 5947 1 50.5 MB 0.4 MB /usr/sbin/apache2 -k start 23482 5947 1 82.6 MB 0.4 MB /usr/sbin/apache2 -k start ### Processes: 8 ### Total private dirty RSS: 3.50 MB --------- Passenger processes ---------. PID Threads VMSize Private Name ---------------------------------------. 6026 1 10.9 MB 4.7 MB Passenger spawn server 23481 1 26.7 MB 3.0 MB Passenger FrameworkSpawner: 2.0.2 23791 1 26.8 MB 2.9 MB Passenger ApplicationSpawner: /var/www/projects/app1-foobar 23793 1 26.9 MB 17.1 MB Rails: /var/www/projects/app1-foobar ### Processes: 4 ### Total private dirty RSS: 27.76 M
The Private or private dirty RSS field shows the real memory usage of processes. Here, we see that all the Apache worker processes only take less than 1 MB memory each. This is a lot less than the 50 MB-ish memory usage as shown in the VMSize column (which is what a lot of people think is the real memory usage, but is actually not).
Private dirty RSS reporting only works on Linux. Unfortunately other operating systems don’t provide facilities for determining processes' private dirty RSS. On non-Linux systems, the Resident Set Size is reported instead. |
One can inspect Phusion Passenger’s internal status with the tool passenger-status. This tool must typically be run as root. For example:
[bash@localhost root]# passenger-status ----------- General information ----------- max = 6 count = 1 active = 0 inactive = 1 ----------- Domains ----------- /var/www/projects/app1-foobar: PID: 9617 Sessions: 0 Processed: 7 Uptime: 2m 23s
The general information section shows the following information:
The maximum number of application instances that Phusion Passenger will spawn. This equals the value given for PassengerMaxPoolSize (Apache) or passenger_max_pool_size (Nginx).
The number of application instances that are currently alive. This value is always less than or equal to max.
The number of application instances that are currently processing requests. This value is always less than or equal to count.
The number of application instances that are currently not processing requests, i.e. are idle. Idle application instances will be shutdown after a while, as can be specified with PassengerPoolIdleTime (Apache)/passenger_pool_idle_time (Nginx) (unless this value is set to 0, in which case application instances are never shut down via idle time). The value of inactive equals count - active.
The domains section shows, for each application directory, information about running application instances:
Shows how many HTTP client are currently in the queue of that application Instance, waiting to be processed.
Indicates how many requests the instance has served until now. Tip: it’s possible to limit this number with the PassengerMaxRequests configuration directive.
Shows for how long the application instance has been running.
Since Phusion Passenger uses fair load balancing by default, the number of sessions for the application instances should be fairly close to each other. For example, this is fairly normal:
PID: 4281 Sessions: 2 Processed: 7 Uptime: 5m 11s PID: 4268 Sessions: 0 Processed: 5 Uptime: 4m 52s PID: 4265 Sessions: 1 Processed: 6 Uptime: 5m 38s PID: 4275 Sessions: 1 Processed: 7 Uptime: 3m 14s
But if you see a "spike", i.e. an application instance has an unusually high number of sessions compared to the others, then there might be a problem:
PID: 4281 Sessions: 2 Processed: 7 Uptime: 5m 11s PID: 17468 Sessions: 8 <-+ Processed: 2 Uptime: 4m 47s PID: 4265 Sessions: 1 | Processed: 6 Uptime: 5m 38s PID: 4275 Sessions: 1 | Processed: 7 Uptime: 3m 14s | +---- "spike"
Possible reasons why spikes can occur:
Your application is busy processing a request that takes a very long time. If this is the case, then you might want to turn global queuing on.
Your application is frozen, i.e. has stopped responding. See Debugging frozen applications for tips.
If one of your application instances is frozen (stopped responding), then you can figure out where it is frozen by killing it with SIGABRT. This will cause the application to raise an exception, with a backtrace.
The exception (with full backtrace information) is normally logged into the Apache error log. But if your application or if its web framework has its own exception logging routines, then exceptions might be logged into the application’s log files instead. This is the case with Ruby on Rails. So if you kill a Ruby on Rails application with SIGABRT, please check the application’s production.log first (assuming that you’re running it in a production environment). If you don’t see a backtrace there, check the Apache error log.
It is safe to kill application instances, even in live environments. Phusion Passenger will restart killed application instances, as if nothing bad happened. |
There is a problem that plagues most PHP web hosts, namely the fact that all PHP applications are run in the same user context as the web server. So for example, Joe’s PHP application will be able to read Jane’s PHP application’s passwords. This is obviously undesirable on many servers.
Phusion Passenger solves this problem by implementing user switching. A Rails application is started as the owner of the file config/environment.rb, and a Rack application is started as the owner of the file config.ru. So if /home/webapps/foo/config/environment.rb is owned by joe, then Phusion Passenger will launch the corresponding Rails application as joe as well.
This behavior is the default, and you don’t need to configure anything. But there are things that you should keep in mind:
The owner of environment.rb must have read access to the Rails application’s folder, and read/write access to the Rails application’s logs folder. Likewise, the owner of config.ru must have read access to the Rack application’s folder.
This feature is only available if Apache is started by root. This is the case on most Apache installations.
Under no circumstances will applications be run as root. If environment.rb/config.ru is owned as root or by an unknown user, then the Rails/Rack application will run as the user specified by PassengerDefaultUser (Apache)/passenger_default_user (Nginx).
User switching can be disabled with the PassengerUserSwitching (Apache)/passenger_user_switching (Nginx) option.
Is it possible to reduce memory consumption of your Rails applications by 33% on average, by using Ruby Enterprise Edition. Please visit the website for details.
Note that this feature does not apply to Rack applications.
Phusion Passenger can be combined with Capistrano. The following Capistrano recipe demonstrates Phusion Passenger support. It assumes that you’re using Git as version control system.
set :application, "myapp" set :domain, "example.com" set :repository, "ssh://#{domain}/path-to-your-git-repo/#{application}.git" set :use_sudo, false set :deploy_to, "/path-to-your-web-app-directory/#{application}" set :scm, "git" role :app, domain role :web, domain role :db, domain, :primary => true namespace :deploy do task :start, :roles => :app do run "touch #{current_release}/tmp/restart.txt" end task :stop, :roles => :app do # Do nothing. end desc "Restart Application" task :restart, :roles => :app do run "touch #{current_release}/tmp/restart.txt" end end
It is possible to relocate the Phusion Passenger files to a different directory. It involves two steps:
Moving the directory.
Updating the “PassengerRoot” configuration option in Apache.
For example, if Phusion Passenger is located in /opt/passenger/, and you’d like to move it to /usr/local/passenger/, then do this:
Run the following command:
mv /opt/passenger /usr/local/passenger
Edit your Apache configuration file, and set:
PassengerRoot /usr/local/passenger
Each Ruby on Rails applications that are going to be deployed may require a specific Ruby on Rails version. You can install a specific version with this command:
gem install rails -v X.X.X
where X.X.X is the version number of Ruby on Rails.
All of these versions will exist in parallel, and will not conflict with each other. Phusion Passenger will automatically make use of the correct version.
In some situations it might be desirable to restart the web application after each request, for example when developing a non-Rails application that doesn’t support code reloading, or when developing a web framework.
To achieve this, simply create the file tmp/always_restart.txt in your application’s root folder. Unlike restart.txt, Phusion Passenger does not check for this file’s timestamp: Phusion Passenger will always restart the application, as long as always_restart.txt exists.
If you’re just developing a Rails application then you probably don’t need this feature. If you set RailsEnv development in your Apache configuration, then Rails will automatically reload your application code after each request. always_restart.txt is only useful if you’re working on Ruby on Rails itself, or when you’re not developing a Rails application and your web framework does not support code reloading. |
Some people experience broken images and other broken static assets when they deploy their application to a sub-URI (i.e. http://mysite.com/railsapp/). The reason for this usually is that you used a static URI for your image in the views. This means your img source probably refers to something like /images/foo.jpg. The leading slash means that it’s an absolute URI: you’re telling the browser to always load http://mysite.com/images/foo.jpg no matter what. The problem is that the image is actually at http://mysite.com/railsapp/images/foo.jpg. There are two ways to fix this.
The first way (not recommended) is to change your view templates to refer to images/foo.jpg. This is a relative URI: note the lack of a leading slash). What this does is making the path relative to the current URI. The problem is that if you use restful URIs, then your images will probably break again when you add a level to the URI. For example, when you’re at http://mysite.com/railsapp the browser will look for http://mysite.com/railsapp/images/foo.jpg. But when you’re at http://mysite.com/railsapp/controller. the browser will look for http://mysite.com/railsapp/controller/images/foo.jpg. So relative URIs usually don’t work well with layout templates.
The second and highly recommended way is to always use Rails helper methods to output tags for static assets. These helper methods automatically take care of prepending the base URI that you’ve deployed the application to. For images there is image_tag, for JavaScript there is javascript_include_tag and for CSS there is stylesheet_link_tag. In the above example you would simply remove the <img> HTML tag and replace it with inline Ruby like this:
<%= image_tag("foo.jpg") %>
This will generate the proper image tag to $RAILS_ROOT/public/images/foo.jpg so that your images will always work no matter what sub-URI you’ve deployed to.
These helper methods are more valuable than you may think. For example they also append a timestamp to the URI to better facilitate HTTP caching. For more information, please refer to the Rails API docs.
Phusion Passenger does not provide X-Sendfile support by itself. Please install mod_xsendfile for X-Sendfile support.
Phusion Passenger does not provide upload progress support by itself. Please try drogus’s Apache upload progress module instead.
Phusion Passenger hides a lot of complexity for the end user (i.e. the web server system administrator), but sometimes it is desirable to know what is going on. This section describes a few things that Phusion Passenger does under the hood.
Phusion Passenger accelerates serving of static files. This means that, if an URI maps to a file that exists, then Phusion Passenger will let Apache serve that file directly, without hitting the web application.
Phusion Passenger does all this without the need for any mod_rewrite rules. People who are switching from an old Mongrel-based setup might have mod_rewrite rules such as these:
# Check whether this request has a corresponding file; if that # exists, let Apache serve it, otherwise forward the request to # Mongrel. RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ balancer://mongrel%{REQUEST_URI} [P,QSA,L]
These kind of mod_rewrite rules are no longer required, and you can safely remove them.
For each HTTP request, Phusion Passenger will automatically look for a corresponding page cache file, and serve that if it exists. It does this by appending ".html" to the filename that the URI normally maps to, and checking whether that file exists. This check occurs after checking whether the original mapped filename exists (as part of static asset serving). All this is done without the need for special mod_rewrite rules.
For example, suppose that the browser requests /foo/bar.
Phusion Passenger will first check whether this URI maps to a static file, i.e. whether the file foo/bar exists in the web application’s public directory. If it does then Phusion Passenger will serve this file through Apache immediately.
If that doesn’t exist, then Phusion Passenger will check whether the file foo/bar.html exists. If it does then Phusion Passenger will serve this file through Apache immediately.
If foo/bar.html doesn’t exist either, then Phusion Passenger will forward the request to the underlying web application.
Note that Phusion Passenger’s page caching support doesn’t work if your web application uses a non-standard page cache directory, i.e. if it doesn’t cache to the public directory. In that case you’ll need to use mod_rewrite to serve such page cache files.
After you’ve read the deployment instructions you might wonder how Phusion Passenger knows that the DocumentRoot points to a web application that Phusion Passenger is able to serve, and how it knows what kind of web application it is (e.g. Rails or Rack).
Phusion Passenger checks whether the virtual host is a Rails application by checking whether the following file exists:
dirname(DocumentRoot) + "/config/environment.rb"
If you’re not a programmer and don’t understand the above pseudo-code snippet, it means that Phusion Passenger will:
Extract the parent directory filename from the value of the DocumentRoot directory.
Append the text "/config/environment.rb" to the result, and check whether the resulting filename exists.
So suppose that your document root is /webapps/foo/public. Phusion Passenger will check whether the file /webapps/foo/config/environment.rb exists.
Note that Phusion Passenger does not resolve any symlinks in the document root path since version 2.2.0 — in contrast to versions earlier than 2.2.0, which does resolve symlinks. So for example, suppose that your DocumentRoot points to /home/www/example.com, which in turn is a symlink to /webapps/example.com/public. In versions earlier than 2.2.0, Phusion Passenger will check whether /webapps/example.com/config/environment.rb exists because it resolves all symlinks. Phusion Passenger 2.2.0 and later however will check for /home/www/config/environment.rb. This file of course doesn’t exist, and as a result Phusion Passenger will not activate itself for this virtual host, and you’ll most likely see an Apache mod_dirindex directory listing.
If you’re running into this problem, you can explicitly tell Phusion Passenger what the correct application root is through the PassengerAppRoot configuration directive.
Autodetection of Rack applications happens through the same mechanism, exception that Phusion Passenger will look for config.ru instead of config/environment.rb.
The text of this document is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported License.
Phusion Passenger is brought to you by Phusion.
Phusion Passenger is a trademark of Hongli Lai & Ninh Bui.
The root directory of an application that’s served by Phusion Passenger.
In case of Ruby on Rails applications, this is the directory that contains Rakefile, app/, config/, public/, etc. In other words, the directory pointed to by RAILS_ROOT. For example, take the following directory structure:
/apps/foo/ <------ This is the Rails application's application root! | +- app/ | | | +- controllers/ | | | +- models/ | | | +- views/ | +- config/ | | | +- environment.rb | | | +- ... | +- public/ | | | +- ... | +- ...
In case of Rack applications, this is the directory that contains config.ru. For example, take the following directory structure:
/apps/bar/ <----- This is the Rack application's application root! | +- public/ | | | +- ... | +- config.ru | +- ...
In case of Python (WSGI) applications, this is the directory that contains passenger_wsgi.py. For example, take the following directory structure:
/apps/baz/ <----- This is the WSGI application's application root! | +- public/ | | | +- ... | +- passenger_wsgi.py | +- ...
At its core, Phusion Passenger is an HTTP proxy and process manager. It spawns Ruby on Rails/Rack/WSGI worker processes (which may also be referred to as backend processes), and forwards incoming HTTP request to one of the worker processes.
While this may sound simple, there’s not just one way to spawn worker processes. Let’s go over the different spawning methods. For simplicity’s sake, let’s assume that we’re only talking about Ruby on Rails applications.
Phusion Passenger could create a new Ruby process, which will then load the Rails application along with the entire Rails framework. This process will then enter an request handling main loop.
This is the most straightforward way to spawn worker processes. If you’re familiar with the Mongrel application server, then this approach is exactly what mongrel_cluster performs: it creates N worker processes, each which loads a full copy of the Rails application and the Rails framework in memory. The Thin application server employs pretty much the same approach.
Note that Phusion Passenger’s version of conservative spawning differs slightly from mongrel_cluster. Mongrel_cluster creates entirely new Ruby processes. In programmers jargon, mongrel_cluster creates new Ruby processes by forking the current process and exec()-ing a new Ruby interpreter. Phusion Passenger on the other hand creates processes that reuse the already loaded Ruby interpreter. In programmers jargon, Phusion Passenger calls fork(), but not exec().
Smart spawning is only available for Ruby on Rails applications, not for Rack applications or WSGI applications. |
While conservative spawning works well, it’s not as efficient as it could be because each worker process has its own private copy of the Rails application as well as the Rails framework. This wastes memory as well as startup time.
Figure: Worker processes and conservative spawning. Each worker process has its
own private copy of the application code and Rails framework code.
It is possible to make the different worker processes share the memory occupied by application and Rails framework code, by utilizing so-called copy-on-write semantics of the virtual memory system on modern operating systems. As a side effect, the startup time is also reduced. This is technique is exploited by Phusion Passenger’s smart and smart-lv2 spawn methods.
When the smart-lv2 spawn method is being used, Phusion Passenger will first create a so-called ApplicationSpawner server process. This process loads the entire Rails application along with the Rails framework, by loading environment.rb. Then, whenever Phusion Passenger needs a new worker process, it will instruct the ApplicationSpawner server to do so. The ApplicationSpawner server will create a worker new process that reuses the already loaded Rails application/framework. Creating a worker process through an already running ApplicationSpawner server is very fast, about 10 times faster than loading the Rails application/framework from scratch. If the Ruby interpreter is copy-on-write friendly (that is, if you’re running Ruby Enterprise Edition) then all created worker processes will share as much common memory as possible. That is, they will all share the same application and Rails framework code.
Figure: Worker processes and the smart-lv2 spawn method. All worker processes,
as well as the ApplicationSpawner, share the same application code and Rails
framework code.
The smart spawn method goes even further, by caching the Rails framework in another process called the FrameworkSpawner server. This process only loads the Rails framework, not the application. When a FrameworkSpawner server is instructed to create a new worker process, it will create a new ApplicationSpawner to which the instruction will be delegated. All those ApplicationSpawner servers, as well as all worker processes created by those ApplicationSpawner servers, will share the same Rails framework code.
The smart-lv2 method allows different worker processes that belong to the same application to share memory. The smart method allows different worker processes - that happen to use the same Rails version - to share memory, even if they don’t belong to the same application.
Notes:
Vendored Rails frameworks cannot be shared by different applications, even if both vendored Rails frameworks are the same version. So for efficiency reasons we don’t recommend vendoring Rails.
ApplicationSpawner and FrameworkSpawner servers have an idle timeout just like worker processes. If an ApplicationSpawner/FrameworkSpawner server hasn’t been instructed to do anything for a while, it will be shutdown in order to conserve memory. This idle timeout is configurable.
Suppose that Phusion Passenger needs a new worker process for an application that uses Rails 2.2.1.
If the smart-lv2 spawning method is used, and an ApplicationSpawner server for this application is already running, then worker process creation time is about 10 times faster than conservative spawning. This worker process will also share application and Rails framework code memory with the ApplicationSpawner server and the worker processes that had been spawned by this ApplicationSpawner server.
If the smart spawning method is used, and a FrameworkSpawner server for Rails 2.2.1 is already running, but no ApplicationSpawner server for this application is running, then worker process creation time is about 2 times faster than conservative spawning. If there is an ApplicationSpawner server for this application running, then worker process creation time is about 10 times faster. This worker process will also share application and Rails framework code memory with the ApplicationSpawner and FrameworkSpawner servers.
You could compare ApplicationSpawner and FrameworkSpawner servers with stem cells, that have the ability to quickly change into more specific cells (worker process).
In practice, the smart spawning methods could mean a memory saving of about 33%, assuming that your Ruby interpreter is copy-on-write friendly.
Of course, smart spawning is not without gotchas. But if you understand the gotchas you can easily reap the benefits of smart spawning.
Because worker processes are created by forking from an ApplicationSpawner server, it will share all file descriptors that are opened by the ApplicationSpawner server. (This is part of the semantics of the Unix fork() system call. You might want to Google it if you’re not familiar with it.) A file descriptor is a handle which can be an opened file, an opened socket connection, a pipe, etc. If different worker processes write to such a file descriptor at the same time, then their write calls will be interleaved, which may potentially cause problems.
The problem commonly involves socket connections that are unintentially being shared. You can fix it by closing and reestablishing the connection when Phusion Passenger is creating a new worker process. Phusion Passenger provides the API call PhusionPassenger.on_event(:starting_worker_process) to do so. So you could insert the following code in your environment.rb:
if defined?(PhusionPassenger) PhusionPassenger.on_event(:starting_worker_process) do |forked| if forked # We're in smart spawning mode. ... code to reestablish socket connections here ... else # We're in conservative spawning mode. We don't need to do anything. end end end
Note that Phusion Passenger automatically reestablishes the connection to the database upon creating a new worker process, which is why you normally do not encounter any database issues when using smart spawning mode.
Suppose we have a Rails application that connects to a Memcached server in environment.rb. This causes the ApplicationSpawner to have a socket connection (file descriptor) to the Memcached server, as shown in the following figure:
+--------------------+ | ApplicationSpawner |-----------[Memcached server] +--------------------+
Phusion Passenger then proceeds with creating a new Rails worker process, which is to process incoming HTTP requests. The result will look like this:
+--------------------+ | ApplicationSpawner |------+----[Memcached server] +--------------------+ | | +--------------------+ | | Worker process 1 |-----/ +--------------------+
Since a fork() makes a (virtual) complete copy of a process, all its file descriptors will be copied as well. What we see here is that ApplicationSpawner and Worker process 1 both share the same connection to Memcached.
Now supposed that your site gets Slashdotted and Phusion Passenger needs to spawn another worker process. It does so by forking ApplicationSpawner. The result is now as follows:
+--------------------+ | ApplicationSpawner |------+----[Memcached server] +--------------------+ | | +--------------------+ | | Worker process 1 |-----/| +--------------------+ | | +--------------------+ | | Worker process 2 |-----/ +--------------------+
As you can see, Worker process 1 and Worker process 2 have the same Memcache connection.
Suppose that users Joe and Jane visit your website at the same time. Joe’s request is handled by Worker process 1, and Jane’s request is handled by Worker process 2. Both worker processes want to fetch something from Memcached. Suppose that in order to do that, both handlers need to send a "FETCH" command to Memcached.
But suppose that, after worker process 1 having only sent "FE", a context switch occurs, and worker process 2 starts sending a "FETCH" command to Memcached as well. If worker process 2 succeeds in sending only one bye, F, then Memcached will receive a command which begins with "FEF", a command that it does not recognize. In other words: the data from both handlers get interleaved. And thus Memcached is forced to handle this as an error.
This problem can be solved by reestablishing the connection to Memcached after forking:
+--------------------+ | ApplicationSpawner |------+----[Memcached server] +--------------------+ | | | | +--------------------+ | | | Worker process 1 |-----/| | +--------------------+ | | <--- created this X | new | connection X <-- closed this | +--------------------+ | old | | Worker process 2 |-----/ connection | +--------------------+ | | | +-------------------------------------+
Worker process 2 now has its own, separate communication channel with Memcached. The code in environment.rb looks like this:
if defined?(PhusionPassenger) PhusionPassenger.on_event(:starting_worker_process) do |forked| if forked # We're in smart spawning mode. reestablish_connection_to_memcached else # We're in conservative spawning mode. We don't need to do anything. end end end
There are also cases in which unintential file descriptor sharing is not harmful. One such case is log file file descriptor sharing. Even if two processes write to the log file at the same time, the worst thing that can happen is that the data in the log file is interleaved.
To guarantee that the data written to the log file is never interleaved, you must synchronize write access via an inter-process synchronization mechanism, such as file locks. Reopening the log file, like you would have done in the Memcached example, doesn’t help.
Another part of the fork() system call’s semantics is the fact that threads disappear after a fork call. So if you’ve created any threads in environment.rb, then those threads will no longer be running in newly created worker process. You need to revive them when a new worker process is created. Use the :starting_worker_process event that Phusion Passenger provides, like this:
if defined?(PhusionPassenger) PhusionPassenger.on_event(:starting_worker_process) do |forked| if forked # We're in smart spawning mode. ... code to revive threads here ... else # We're in conservative spawning mode. We don't need to do anything. end end end
This gotcha is only applicable to the smart spawn method, not the smart-lv2 spawn method.
If your application expects the Rails framework to be not loaded during the beginning of environment.rb, then it can cause problems when an ApplicationSpawner is created from a FrameworkSpawner, which already has the Rails framework loaded. The most common case is when applications try to patch Rails by dropping a modified file that has the same name as Rails’s own file, in a path that comes earlier in the Ruby search path.
For example, suppose that we have an application which has a patched version of active_record/base.rb located in RAILS_ROOT/lib/patches, and RAILS_ROOT/lib/patches comes first in the Ruby load path. When conservative spawning is used, the patched version of base.rb is properly loaded. When smart (not smart-lv2) spawning is used, the original base.rb is used because it was already loaded, so a subsequent require "active_record/base" has no effect.