Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

passenger_apache2 (37) Versions 2.2.2

Installs Passenger for Apache2

Policyfile
Berkshelf
Knife
cookbook 'passenger_apache2', '= 2.2.2', :supermarket
cookbook 'passenger_apache2', '= 2.2.2'
knife supermarket install passenger_apache2
knife supermarket download passenger_apache2
README
Dependencies
Changelog
Quality -%

passenger_apache2 Cookbook

Installs passenger for Apache 2.

Requirements

Requires Chef 0.10.10+ and Ohai 0.6.10+ for platform_family attribute use.

Platforms

Tested on the following platforms:

  • Ubuntu 10.04, 12.04
  • CentOS 5.8, 6.3

The source install method was used on CentOS. It may work on other platforms with or without modification.

Cookbooks

Opscode cookbooks:

  • apache2
  • build-essential

Attributes

  • node['passenger']['version'] - Specify the version of passenger to install.
  • node['passenger']['max_pool_size'] - Sets PassengerMaxPoolSize in the Apache module config.
  • node['passenger']['root_path'] - The location of the passenger gem.
  • node['passenger']['ruby_bin'] - Sets PassengerRuby in the Apache module config and is used for passenger module configuration. Defaults to node['languages']['ruby']['ruby_bin'].
  • node['passenger']['module_path'] - The location of the compiled passenger apache module.
  • node['passenger']['install_method'] - Includes the "source" (gem install) or "package" recipe. Default "source."
  • node['passenger']['apache_mpm'] - Override with an "override_attribute" (in a role, environment or with node.override) to "worker" or "threaded" to use apache2-threaded-dev package. Otherwise this assumes prefork.
  • node['passenger']['package']['name'] - Name of the package for passenger, default is nil, so this must be set before using the "package" install method/recipe.
  • node['passenger']['package']['version'] - Specify the version of the passenger package to install. Uses version attribute above by default. To install the version available by default (latest, usually), delete the attribute in a recipe with this line:
  • node['passenger']['install_module'] - Specify the boolean value which decides installing Passenger. Defaults to true, and setting to false skips the installation
  node.set['passenger']['package'].delete('version')

Recipes

default

Installs passenger from gem (source) or package depending on the value of the install_method attribute.

mod_rails

Installs the passenger gem and enables the module in Apache2.

source

Installs passenger as a RubyGem.

package

Installs passenger as a Package.

Set the install_method attribute to package, then set the package['name'] attribute to the correct package for your platform. The recipe does not yet handle adding yum repositories for RHEL platforms, so that should be done in another recipe until COOK-2414 is resolved.

Set the node['passenger']['package']['version'] attribute to the correct value for your system's available package repository if necessary. By default the value is nil which will install the latest package version from the distribution package manager.

Usage

For example, to run a Rails application on passenger:

include_recipe "rails"
include_recipe "passenger_apache2"

web_app "myproj" do
  docroot "/srv/myproj/public"
  server_name "myproj.#{node[:domain]}"
  server_aliases [ "myproj", node[:hostname] ]
  rails_env "production"
end

A sample config template is provided, web_app.conf.erb. If this is suitable for your application, add 'cookbook "passenger"' to the define above to use that template. Otherwise, copy the template to the cookbook where you're using web_app, and modify as needed. The cookbook parameter is optional, if omitted it will search the cookbook where the define is used.

License & Authors

Copyright: 2009-2013, Opscode, Inc
Copyright: 2009, 37signals
Copright: 2009, Michael Hale

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Dependent cookbooks

apache2 >= 1.0.4
build-essential >= 0.0.0

Contingent cookbooks

application Applicable Versions
application_ruby Applicable Versions
chef Applicable Versions
gitorious Applicable Versions
instiki Applicable Versions
jently Applicable Versions
open-build-service Applicable Versions
radiant Applicable Versions
redmine Applicable Versions
stoplight Applicable Versions

passenger_apache2 Cookbook CHANGELOG

This file is used to list changes made in each version of the passenger_apache2 cookbook.

v2.2.2 (2014-08-25)

  • COOK-4666 Include attribute conditional check to install module

v2.2.0 (2014-02-21)

Bug

  • COOK-4081 - Install command does not use correct attribute

Improvement

  • COOK-4005 - Make the passenger apache module installation step use optional custom ruby when building from source

v2.1.4

Improvement

  • [COOK-4005] Make the passenger apache module installation use optional custom ruby when building from source

v2.1.2

Bug

  • [COOK-3706] Fix permission of passenger.load
  • [COOK-3747] Call full path for installing module

v2.1.0

Bug

  • COOK-3654 - Fix compatibility with Chef 11
  • COOK-3395 - Fix an issue where the recipe does not compile the version of passenger specified on the node attribute

Improvement

  • COOK-3486 - Make PassengerRuby configurable

v2.0.4

Bug

  • COOK-2293 - Automatically reload Ohai attribtues

v2.0.2

Bug

  • [COOK-2750]: using mod_rails in run_list by itself fails in version 2.0.0
  • [COOK-2972]: passenger_apache2 has foodcritic errors
  • [COOK-3180]: don't use mod_rails recipe w/ package install

v2.0.0

[COOK-2115] - Improve passenger_apache2 cookbook source
[COOK-2128] - Allow apache passenger to be installed via packages
[COOK-2203] - Remove :source key from module_path
[COOK-2379] - passenger_apache2 should install passenger 3.0.19
[COOK-2380] - pasenger_apache2 should use platform_family for additional platform support

v1.1.0

  • [COOK-2003] - only able to use apache2-prefork-dev to compile passenger

v1.0.0

  • [COOK-1097] - documentation missing for mod_rails recipe
  • [COOK-1132] - example doesn't work
  • [COOK-1133] - update to passenger v3.0.11

v0.99.4

  • [COOK-958] - fix regression for loadmodule on debian/ubuntu
  • [COOK-1003] - support archlinux

v0.99.2

  • [COOK-859] - don't hardcode module path
  • [COOK-539] - use --auto for installation
  • [COOK-608] - remove RailsAllowModRewrite from web_app.erb
  • [COOK-640] - use correct development headers on RHEL

v0.99.0

  • Upgrade to passenger 3.0.7
  • Attributes are all "default"
  • Install curl development headers
  • Move PassengerMaxPoolSize to config of module instead of vhost.

No quality metric results found