cookbook 'apache2', '= 0.9.1', :supermarket
apache2
(87) Versions
0.9.1
-
-
8.9.0
-
8.8.0
-
8.7.0
-
8.6.0
-
8.5.1
-
8.5.0
-
8.4.0
-
8.3.0
-
8.2.1
-
8.2.0
-
8.1.2
-
8.1.1
-
8.1.0
-
8.0.2
-
8.0.1
-
8.0.0
-
7.1.1
-
7.1.0
-
7.0.0
-
6.0.0
-
5.2.1
-
5.2.0
-
5.0.1
-
5.0.0
-
4.0.0
-
3.3.1
-
3.3.0
-
3.2.2
-
3.2.1
-
3.2.0
-
3.1.0
-
3.0.1
-
3.0.0
-
2.0.0
-
1.11.0
-
1.10.5
-
1.10.4
-
1.10.2
-
1.10.0
-
1.9.6
-
1.9.4
-
1.9.1
-
1.9.0
-
1.8.14
-
1.8.12
-
1.8.10
-
1.8.8
-
1.8.6
-
1.8.4
-
1.8.2
-
1.8.0
-
1.7.0
-
1.6.6
-
1.6.2
-
1.6.0
-
1.5.0
-
1.4.2
-
1.4.0
-
1.3.2
-
1.3.0
-
1.2.0
-
1.1.16
-
1.1.12
-
1.1.10
-
1.1.8
-
1.1.6
-
1.1.4
-
1.1.2
-
1.1.0
-
1.0.8
-
1.0.6
-
1.0.4
-
1.0.2
-
1.0.0
-
0.99.4
-
0.99.3
-
0.99.2
-
0.99.1
-
0.99.0
-
0.12.3
-
0.12.2
-
0.12.1
-
0.12.0
-
0.11.0
-
0.10.1
-
0.10.0
-
0.9.1
Follow652
- 8.9.0
- 8.8.0
- 8.7.0
- 8.6.0
- 8.5.1
- 8.5.0
- 8.4.0
- 8.3.0
- 8.2.1
- 8.2.0
- 8.1.2
- 8.1.1
- 8.1.0
- 8.0.2
- 8.0.1
- 8.0.0
- 7.1.1
- 7.1.0
- 7.0.0
- 6.0.0
- 5.2.1
- 5.2.0
- 5.0.1
- 5.0.0
- 4.0.0
- 3.3.1
- 3.3.0
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.0
- 3.0.1
- 3.0.0
- 2.0.0
- 1.11.0
- 1.10.5
- 1.10.4
- 1.10.2
- 1.10.0
- 1.9.6
- 1.9.4
- 1.9.1
- 1.9.0
- 1.8.14
- 1.8.12
- 1.8.10
- 1.8.8
- 1.8.6
- 1.8.4
- 1.8.2
- 1.8.0
- 1.7.0
- 1.6.6
- 1.6.2
- 1.6.0
- 1.5.0
- 1.4.2
- 1.4.0
- 1.3.2
- 1.3.0
- 1.2.0
- 1.1.16
- 1.1.12
- 1.1.10
- 1.1.8
- 1.1.6
- 1.1.4
- 1.1.2
- 1.1.0
- 1.0.8
- 1.0.6
- 1.0.4
- 1.0.2
- 1.0.0
- 0.99.4
- 0.99.3
- 0.99.2
- 0.99.1
- 0.99.0
- 0.12.3
- 0.12.2
- 0.12.1
- 0.12.0
- 0.11.0
- 0.10.1
- 0.10.0
- 0.9.1
Installs and configures apache2
cookbook 'apache2', '= 0.9.1'
knife supermarket install apache2
knife supermarket download apache2
= DESCRIPTION:
Complete Debian/Ubuntu style Apache2 configuration.
= REQUIREMENTS:
Debian or Ubuntu preferred.
Red Hat/CentOS and Fedora can be used but will be converted to a Debian/Ubuntu style Apache as it's far easier to manage with chef.
= ATTRIBUTES:
The file attributes/apache.rb contains the following attribute types:
* platform specific locations and settings.
* general settings
* prefork attributes
* worker attributes
General settings and prefork/worker attributes are tunable.
= USAGE:
Include the apache2 recipe to install Apache2 and get 'sane' default settings. Configuration is modularized through Apache vhost sites a la Debian style configuration.
For Red Hat, CentOS and Fedora you should first disable selinux as it's not supported (yet), then remove the stock httpd and all it's dependencies prior to attempting to use this recipe. Many packages in these distributions drop conflicting configs into conf.d, all of which haven't been accounted for yet. Starting from scratch will also make it far easier to debug.
== Defines:
* apache_module: sets up an Apache module.
* apache_conf: sets up a config file for an apache module.
* apache_site: sets up a vhost site. The conf file must be available.
* web_app: copies the template for a web app and enables it as a site via apache_site.
== Web Apps:
Various applications that can be set up with Apache as the front end, such as PHP, Django, Rails and others can use the web_app define to set up the template and the Apache site. The define is kind of dumb, so the template needs have the application implementation settings, since we don't know what your app is or what is needed from Apache.
We only prototype one parameter for the web_app define, "template". This is used to specify the name of the template to use in the current cookbook. When you use web_app, you can set up any parameters you want to use in your template. They will get passed to the template through the params hash. For example, the sample web_app.conf.erb template in this cookbook makes use of these.
* docroot
* server_name
* server_aliases
These are available as @params[:docroot], @params[:server_name], @params[:server_aliases] within the template.
If 'cookbook' and 'template' are not specified, the current cookbook's templates/default/web_app.conf.erb will be used. If this template is not suitable for your application, copy it to your cookbook and customize as needed.
== God Monitor:
There's a new recipe, apache2::god_monitor. You will need to make sure to include the 'god' recipe before using the apache2::god_monitor recipe in your cookbook.
= LICENSE & AUTHOR:
Author:: Joshua Timberman (<joshua@opscode.com>)
Copyright:: 2009, Opscode, Inc
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
This cookbook has no specified dependencies.
Contingent cookbooks
-
abiquo
Applicable Versions
- aem Applicable Versions
- aet Applicable Versions
- alfresco Applicable Versions
- alphard-artifactory Applicable Versions
- alphard-chef-artifactory Applicable Versions
- apache Applicable Versions
- apache2-git-site Applicable Versions
- apache2-global-customlog Applicable Versions
- apache2_odin_auth Applicable Versions
- apache_vhosts Applicable Versions
-
application
Applicable Versions
- application_php Applicable Versions
-
application_ruby
Applicable Versions
- application_zf Applicable Versions
- applications Applicable Versions
- artifactory Applicable Versions
- artifactory_ii Applicable Versions
- asgard Applicable Versions
- askbot Applicable Versions
- awstats Applicable Versions
- backuppc-server Applicable Versions
-
bamboo
Applicable Versions
- bigdesk Applicable Versions
-
boilerplate
Applicable Versions
-
boilerplate_php
Applicable Versions
- bootstrap Applicable Versions
- boxbilling Applicable Versions
- bricks Applicable Versions
- cacti Applicable Versions
- cakephp Applicable Versions
- celery-flower Applicable Versions
- ceph Applicable Versions
-
ceph-chef
Applicable Versions
- certbot Applicable Versions
- cgit Applicable Versions
- chef Applicable Versions
- chef-server Applicable Versions
- chef-server-webapp Applicable Versions
- chef_changereport_handler Applicable Versions
- chef_crowd Applicable Versions
- chef_jira Applicable Versions
- cobbler Applicable Versions
- codenamephp_apache2 Applicable Versions
-
config-driven-helper
Applicable Versions
-
confluence
Applicable Versions
- crowd Applicable Versions
- django Applicable Versions
- drupal Applicable Versions
- drupal-cookbook Applicable Versions
- drupalbaseplus Applicable Versions
- dse-chef Applicable Versions
- dvwa Applicable Versions
- dynatrace Applicable Versions
- dynatrace-appmon Applicable Versions
- elasticsearch-head Applicable Versions
- elefant Applicable Versions
- eulipion-slate Applicable Versions
- foreman Applicable Versions
- forge_server Applicable Versions
- formatron_apache Applicable Versions
- gallery Applicable Versions
- gemirro Applicable Versions
- gems Applicable Versions
- gerrit Applicable Versions
- git Applicable Versions
- gotcms Applicable Versions
- graphene Applicable Versions
- graphite Applicable Versions
- graylog2 Applicable Versions
- gruyere Applicable Versions
- hello_world_circleci_deploy_example Applicable Versions
- http_platform Applicable Versions
- icinga Applicable Versions
- icinga-ng Applicable Versions
-
icinga2
Applicable Versions
- icingaweb2 Applicable Versions
- infochimps_graphite Applicable Versions
- instiki Applicable Versions
- ish_apache Applicable Versions
- jekyll Applicable Versions
- jenkins Applicable Versions
- jira Applicable Versions
- kibana Applicable Versions
- kibana5-gm Applicable Versions
- kibana_lwrp Applicable Versions
- kickstart Applicable Versions
- lamp_role Applicable Versions
- laravel Applicable Versions
- librenms Applicable Versions
- librenms-ng Applicable Versions
- logstash Applicable Versions
- magento Applicable Versions
- magentostack Applicable Versions
- mailman Applicable Versions
- margarita Applicable Versions
- mater Applicable Versions
- mattermost Applicable Versions
- mediawiki Applicable Versions
- mod_pagespeed Applicable Versions
- mod_security Applicable Versions
- mruby Applicable Versions
- munin Applicable Versions
- myface Applicable Versions
-
nagios
Applicable Versions
-
nagios3
Applicable Versions
- naglite2 Applicable Versions
- newrelic Applicable Versions
- nginx-proxy Applicable Versions
- nginx_fallback_to_apache Applicable Versions
- nodestack Applicable Versions
-
noosfero
Applicable Versions
-
open-build-service
Applicable Versions
- opencart Applicable Versions
- openstack-bare-metal Applicable Versions
- openstack-block-storage Applicable Versions
- openstack-compute Applicable Versions
- openstack-dashboard Applicable Versions
- openstack-identity Applicable Versions
- openstack-telemetry Applicable Versions
- owncloud Applicable Versions
- pagekit Applicable Versions
-
passenger_apache2
Applicable Versions
- passenger_enterprise Applicable Versions
- php Applicable Versions
- phpbb Applicable Versions
- phpldapadmin Applicable Versions
- phpstack Applicable Versions
- pnp4nagios Applicable Versions
-
postfixadmin
Applicable Versions
- poweradmin Applicable Versions
- prestashop Applicable Versions
- pxe Applicable Versions
- pxe_dust Applicable Versions
- pypi-mirror Applicable Versions
- pythonstack Applicable Versions
- q2a Applicable Versions
- rackspace_apache_php Applicable Versions
- radiant Applicable Versions
- rails Applicable Versions
- rainloop Applicable Versions
- redirects Applicable Versions
- redmine Applicable Versions
- repository Applicable Versions
- reprepro Applicable Versions
- request_tracker Applicable Versions
-
rundeck
Applicable Versions
- smokeping Applicable Versions
- sogo Applicable Versions
- sptoolkit Applicable Versions
- stack_commons Applicable Versions
-
stash
Applicable Versions
- staticip Applicable Versions
- subversion Applicable Versions
- sugar_crm Applicable Versions
- sugarcrm Applicable Versions
- sugarcrm-ce Applicable Versions
- sugarcrm_ce Applicable Versions
- suhosin Applicable Versions
- teampass Applicable Versions
- testswarm Applicable Versions
- thruk Applicable Versions
- tomcat-openam Applicable Versions
- tonicdns Applicable Versions
- toran Applicable Versions
- trac Applicable Versions
- vicnum Applicable Versions
- virtual_hosts Applicable Versions
- virtualbox Applicable Versions
- virtualbox-install Applicable Versions
- webinar1-myapp Applicable Versions
- webobjects Applicable Versions
- websrv Applicable Versions
-
wordpress
Applicable Versions
- yourls Applicable Versions
- yumrepo_server Applicable Versions
-
zabbix
Applicable Versions
- zabbix-pkg Applicable Versions
- zarafa Applicable Versions
- zendserver Applicable Versions
-
zf2
Applicable Versions
- zoneminder Applicable Versions