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

apache2-git-site (3) Versions 0.1.0

Sets up an apache vhost site backed by a git repo

Policyfile
Berkshelf
Knife
cookbook 'apache2-git-site', '= 0.1.0', :supermarket
cookbook 'apache2-git-site', '= 0.1.0'
knife supermarket install apache2-git-site
knife supermarket download apache2-git-site
README
Dependencies
Changelog
Quality 100%

apache2-git-site-cookbook

This cookbook configures a git-backed site on an apache2 vhost, allowing easy
deployments without having to use ftp or capistrano.

A site can be redeployed by merging changes into a specified branch (default:
the node's environment name)

The git repository will be re-synced every chef run, and can be configured
from node attributes. Multiple sites can be created by listing additional sites
in the attribute hash. A new user will be created for each site, and by default
the files will be owned by this user, and the apache group.

Suggestions

Use the s3fs cookbook to
mount persistent storage for use between your web instances, if necessary.

Supported Platforms

Ubuntu, possibly other unices. (Untested)

Dependencies

Cookbooks:
- git
- apache2

Recipes included
- git::default
- apache2::default

Attributes

<table>
<tr>
<th>Type</th>
<th>Description</th>
<th>Default</th>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites-path']</li></ul></strong>
</td>
</tr>
<tr>
<td>String</td>
<td>Root directory to contain cloned sites</td>
<td>/var/www</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites']</li></ul></strong>
</td>
</tr>
<tr>
<td>Hash</td>
<td>Hash of site definitions</td>
<td>Empty hash</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites']{hash_key}*
</td>
</tr>
<tr>
<td>String</td>
<td>Site ID</td>
<td>None</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites']{hash_value}*
</td>
</tr>
<tr>
<td>Hash</td>
<td>Hash of site parameters</td>
<td>None</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['documentroot']</li></ul></strong>
</td>
</tr>
<tr>
<td>String</td>
<td>Document root relative to the root of the git repostitory</td>
<td>htdocs</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['repository']</li></ul></strong>
</td>
</tr>
<tr>
<td>String</td>
<td>URL for the git repository to be cloned</td>
<td>None (required)</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['branch']</li></ul></strong>
</td>
</tr>
<tr>
<td>String</td>
<td>Git branch to be checked out</td>
<td>node['environment']</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['site-user']</li></ul></strong>
</td>
</tr>
<tr>
<td>String</td>
<td>User that the checked-out files will be owned by</td>
<td>www-#{site-id}</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['site-group']</li></ul></strong>
</td>
</tr>
<tr>
<td>String</td>
<td>Group that the checked-out files will be owned by. Must already exist, and apache user should be a member.</td>
<td>node['apache']['group']</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['servername']</li></ul></strong>
</td>
</tr>
<tr>
<td>String</td>
<td>Vhost server name</td>
<td>None (required)</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['serveradmin']</li></ul></strong>
</td>
</tr>
<tr>
<td>String</td>
<td>Server admin</td>
<td>webmaster@#{['apache2-git-site']['sites'][site_id]['servername']}</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['serveraliases']</li></ul></strong>
</td>
</tr>
<tr>
<td>String Array</td>
<td>Vhost server aliases</td>
<td>Empty array</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['default-options']</li></ul></strong>
</td>
</tr>
<tr>
<td>String Array</td>
<td>Default apache options for documentroot directory</td>
<td>['FollowSymLinks', 'MultiViews', 'ExecCgi']</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['aliases']</li></ul></strong>
</td>
</tr>
<tr>
<td>Hash Array {"path": "root"}</td>
<td>An array of hashes that define aliases, where 'path' is the alias path, and 'root' is the alias root relative to the checkout directory</td>
<td>Empty array</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['extra-config']</li></ul></strong>
</td>
</tr>
<tr>
<td>String Array</td>
<td>An array of additional configuration lines to be added to the apache virtual host configuration file. For example, adding rewrite rules or specifying a custom log.</td>
<td>Empty array</td>
</tr>
<tr>
<td colspan="3">
<ul><li><strong>node['apache2-git-site']['sites'][site_id]['sync-notify-commands']</li></ul></strong>
</td>
</tr>
<tr>
<td>String Array</td>
<td>Specifies a sequence of commands to be executed from inside the git root directory (as the site user) when changes are pulled from the git repository</td>
<td>Empty array</td>
</tr>
</table>

Usage

apache2-git-site::default

Include apache2-git-site in your node's run_list:

{
  "run_list": [
    "recipe[apache2-git-site::default]"
  ]
}

Configure your sites in your node's attributes:
json
{
"apache2-git-site": {
"my_awesome_site": {
"repository": "https://github.com/example/awesome.git",
"servername": "www.example.org"
}
}
}

Contributing

  1. Fork the repository on Github
  2. Create a named feature branch (i.e. add-new-recipe)
  3. Write your change
  4. Write tests for your change (if applicable)
  5. Run the tests, ensuring they all pass
  6. Submit a Pull Request

License and Authors

License:: Apache v2.0
Author:: Simon Detheridge (simon@widgit.com)

Dependent cookbooks

apache2 >= 0.0.0
git >= 0.0.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

0.1.0

Initial release of apache2-git-site

  • Enhancements

    • an enhancement
  • Bug Fixes

    • a bug fix

Foodcritic Metric
            

0.1.0 passed this metric