# Introduction Phusion Passenger can be configured in 2 ways, the "originally packaged" configuration and the "natively packaged" configuration. Depending on the configuration, Phusion Passenger locates its files (also called _assets_) in a different manner. ## Originally packaged This is the configuration you get when you checkout Phusion Passenger from git, when you install Phusion Passenger from a gem or when you extract it from a tarball. All the original files are stored in a single directory tree, which we call the _source root_. This configuration does not come with any binaries; they have to be compiled by the user. Binaries may either be located in the source root, or located in a different location. The following rules apply when it comes to looking for binaries and determining where to store compiled binaries: * It will normally look for binaries in a subdirectory under the source root, and it will store compiled binaries in a subdirectory under the source root. * Phusion Passenger Standalone does things a little differently. It looks for its binaries in one of these places, whichever first exists: - `~/.passenger/standalone//` (a) - `/var/lib/passenger-standalone/` (b) If neither directories exist, then Passenger Standalone compiles the binaries and stores them in (b) (when running as root) or in (a). It still looks for everything else (like the .rb files) in the source root. ## Natively packaged Phusion Passenger is packaged, usually (but not necessarily) through a DEB or RPM package. This configuration comes not only with all necessary binaries, but also with some (but not all) source files. This is because when you run Phusion Passenger with a different Ruby interpreter than the packager intended, Phusion Passenger must be able to compile a new Ruby extension for that Ruby interpreter. This configuration does not however allow compiling against a different Apache or Nginx version than the packager intended. In this configuration, files can be scattered anywhere throughout the filesystem. This way Phusion Passenger can be packaged in an FHS-compliant way. The exact locations of the different types of files can be specified through a _location configuration file_. The existance and usage of a location configuration file does not automatically imply that Phusion Passenger is natively packaged. This configuration also does not allow running Phusion Passenger Standalone against a different Nginx version than the packager intended, but does allow running against a different Ruby version. Passenger Standlone looks for its binaries in the location as specified by the location configuration file; it makes no attempt to compile anything, except of course for the Ruby extension. If either the non-Standalone or the Standalone Passenger needs to have a new Ruby extension compiled, then it will store that in `~/.passenger/native_support//`. # The location configuration file The Phusion Passenger administration tools, such as `passenger-status`, look for a location configuration file in the following places, in the given order: * The environment variable `$PASSENGER_LOCATION_CONFIGURATION_FILE`. * `/phusion_passenger/locations.ini`, where is the Ruby library directory that contains phusion_passenger.rb. For example, `/usr/lib/ruby/1.9.0/phusion_passenger/locations.ini`. * `~/.passenger/locations.ini` * `/etc/phusion-passenger/locations.ini` If it cannot find a location configuration file, then it assumes that Phusion Passenger is originally packaged. If a location configuration file is found then the configuration is determined by the `natively_packaged` option in the location configuration file, which can be either "true" or "false". The Apache module and the Nginx module expect `PassengerRoot`/`passenger_root` to refer to either a directory or a file. If the value refers to a directory, then it assumes that Phusion Passenger is originally packaged, where the source root is the specified directory. If the value refers to a file, then it will use it as the location configuration file, and the configuration depends on the `natively_packaged` setting. The location configuration file is an ini file that looks as follows: [locations] natively_packaged=true bin=/usr/bin agents=/usr/lib/phusion-passenger helper_scripts=/usr/share/phusion-passenger/helper-scripts resources=/usr/share/phusion-passenger doc=/usr/share/doc rubylibdir=/usr/lib/ruby/1.9.0 apache2_module=/usr/lib/apache2/modules/mod_passenger.so ruby_extension_source=/usr/share/phusion_passenger/ruby_native_support_source All keys except fo `natively_packaged` specify the locations of assets and asset directories. The "Asset types" section provides a description of all asset types. Thus, if you're packaging Phusion Passenger, then we recommend the following: * Put a locations.ini file in `/phusion_passenger/locations.ini` and set `PassengerRoot`/`passenger_root` to that filename. We don't recommend using `~/.passenger` or `/etc/phusion-passenger` because if the user wants to install a different Phusion Passenger version alongside the one that you've packaged, then that other version will incorrectly locate your packaged files instead of its own files. * Always set `natively_packaged` to "true". The "false" value is used internally for implementing Phusion Passenger Standalone and should never be used by packagers. # The Phusion Passenger Ruby libraries ## phusion_passenger.rb The Phusion Passenger administration tools are written in Ruby. So the first thing they do is trying to load `phusion_passenger.rb`, which is the source file responsible for figuring out where all the other Phusion Passenger files are. It tries to look for phusion_passenger.rb in `/../lib` where `` is the directory that the tool is located in. If phusion_passenger.rb is not there, then it tries to load it from the normal Ruby load path. ## Ruby extension The Phusion Passenger loader scripts try to load the Phusion Passenger Ruby extension (`passenger_native_support.so`) from the following places, in the given order: * If Phusion Passenger is originally packaged, it will look for the Ruby extension in `/libout/ruby/`. Otherwise, this step is skipped. * The Ruby library load path. * `~/.passenger/native_support//` If it cannot find the Ruby extension in any of the above places, then it will attempt to compile the Ruby extension and store it in `~/.passenger/native_support//`. ## Conclusion for packagers If you're packaging Phusion Passenger then you should put both phusion_passenger.rb and `passenger_native_support.so` somewhere in the Ruby load path, or make sure that that directory is included in the `$RUBYLIB` environment variable. You cannot specify a custom directory though the location configuration file. # Asset types Throughout the Phusion Passenger codebase, we refer to all kinds of assets. Here's a list of all possible assets and asset directories. * `source_root` When Phusion Passenger is originally packaged, this refers to the directory that contains the entire Phusion passenger source tree. Not available when natively packaged. * `bin` A directory containing administration binaries and scripts and like `passenger-status`; tools that the user may directly invoke on the command line. Value when originally packaged: `/bin` * `agents` A directory that contains (platform-dependent) binaries that Phusion Passenger uses, but that should not be directly invoked from the command line. Things like PassengerHelperAgent are located here. Value when originally packaged: - Normally: `/agents` - Passenger Standalone: `~/.passenger/standalone//support-` * `helper_scripts` A directory that contains non-binary scripts that Phusion Passenger uses, but that should not be directly invoked from the command line. Things like rack-loader.rb are located here. Value when originally packaged: `/helper-scripts` * `resources` A directory that contains non-executable, platform-independent resource files that the user should not directly access, like error page templates and configuration file templates. Value when originally packaged: `/resources`. * `doc` A directory that contains documentation. Value when originally packaged: `/doc`. * `rubylibdir` A directory that contains the Phusion Passenger Ruby library files. Note that the Phusion Passenger administration tools still locate phusion_passenger.rb as described in the section "The Phusion Passenger Ruby libraries", irregardless of the value of this key in the location configuration file. The value is only useful to non-Ruby Phusion Passenger code. Value when originally packaged: `/lib`. * `apache2_module` The filename of the Apache 2 module, or the filename that the Apache 2 module will be stored after it's compiled. Used by `passenger-install-module` to print an example configuration snippet. Value when originally packaged: `/ext/apache2/mod_passenger.so`. * `ruby_extension_source` The directory that contains the source code for the Phusion Passenger Ruby extension. Value when originally packaged: `/ext/ruby`. # Vendoring of libraries Phusion Passenger vendors libev and libeio in order to make installation easier for users on operating systems without proper package management, like OS X. If you want Phusion Passenger to compile against the system-provided libev and/or libeio instead, then set the following environment variables before compiling: * `export USE_VENDORED_LIBEV=no` * `export USE_VENDORED_LIBEIO=no` Note that we require at least libev 4.11 and libeio 1.0. # Misc notes ## Generating gem and tarball Use the following command to generate a gem and tarball, in which Phusion Passenger is originally packaged and without any binaries: rake package The files will be stored in `pkg/`. ## Fakeroot You can generate a fakeroot with the command `rake fakeroot`. This will generate an FHS-compliant directory tree in `pkg/fakeroot`, which you can directly package or with minor modifications. The fakeroot even contains a location configuration file. If the default fakeroot structure is not sufficient, please consider sending a patch.