puppet_forge 2.3.3 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -319,7 +319,7 @@
319
319
  "file_size": 85004,
320
320
  "file_md5": "4036f35903264c9b6e3289455cfee225",
321
321
  "downloads": 6389,
322
- "readme": "<section class=\"markdown\"><h1>apache</h1>\n\n<p><a href=\"https://travis-ci.org/puppetlabs/puppetlabs-apache\"><img src=\"https://travis-ci.org/puppetlabs/puppetlabs-apache.png?branch=master\" alt=\"Build Status\"></a></p>\n\n<h4>Table of Contents</h4>\n\n<ol>\n<li><a href=\"#overview\">Overview - What is the Apache module?</a></li>\n<li><a href=\"#module-description\">Module Description - What does the module do?</a></li>\n<li><a href=\"#setup\">Setup - The basics of getting started with Apache</a>\n\n<ul>\n<li><a href=\"#beginning-with-apache\">Beginning with Apache - Installation</a></li>\n<li><a href=\"#configure-a-virtual-host\">Configure a Virtual Host - Basic options for getting started</a></li>\n</ul></li>\n<li><a href=\"#usage\">Usage - The classes, defined types, and their parameters available for configuration</a>\n\n<ul>\n<li><a href=\"#classes-and-defined-types\">Classes and Defined Types</a>\n\n<ul>\n<li><a href=\"#class-apache\">Class: apache</a></li>\n<li><a href=\"#classes-apachemodname\">Classes: apache::mod::*</a></li>\n<li><a href=\"#defined-type-apachevhost\">Defined Type: apache::vhost</a></li>\n</ul></li>\n<li><a href=\"#virtual-host-examples\">Virtual Host Examples - Demonstrations of some configuration options</a></li>\n</ul></li>\n<li><a href=\"#implementation\">Implementation - An under-the-hood peek at what the module is doing</a>\n\n<ul>\n<li><a href=\"#classes-and-defined-types\">Classes and Defined Types</a></li>\n<li><a href=\"#templates\">Templates</a></li>\n</ul></li>\n<li><a href=\"#limitations\">Limitations - OS compatibility, etc.</a></li>\n<li><a href=\"#development\">Development - Guide for contributing to the module</a></li>\n<li><a href=\"#release-notes\">Release Notes - Notes on the most recent updates to the module</a></li>\n</ol>\n\n<h2>Overview</h2>\n\n<p>The Apache module allows you to set up virtual hosts and manage web services with minimal effort.</p>\n\n<h2>Module Description</h2>\n\n<p>Apache is a widely-used web server, and this module provides a simplified way of creating configurations to manage your infrastructure. This includes the ability to configure and manage a range of different virtual host setups, as well as a streamlined way to install and configure Apache modules.</p>\n\n<h2>Setup</h2>\n\n<p><strong>What Apache affects:</strong></p>\n\n<ul>\n<li>configuration files and directories (created and written to)\n\n<ul>\n<li><strong>NOTE</strong>: Configurations that are <em>not</em> managed by Puppet will be purged.</li>\n</ul></li>\n<li>package/service/configuration files for Apache</li>\n<li>Apache modules</li>\n<li>virtual hosts</li>\n<li>listened-to ports</li>\n<li><code>/etc/make.conf</code> on FreeBSD</li>\n</ul>\n\n<h3>Beginning with Apache</h3>\n\n<p>To install Apache with the default parameters</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache&#39;: }\n</code></pre>\n\n<p>The defaults are determined by your operating system (e.g. Debian systems have one set of defaults, RedHat systems have another). These defaults will work well in a testing environment, but are not suggested for production. To establish customized parameters</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache&#39;:\n default_mods =&gt; false,\n default_confd_files =&gt; false,\n }\n</code></pre>\n\n<h3>Configure a virtual host</h3>\n\n<p>Declaring the <code>apache</code> class will create a default virtual host by setting up a vhost on port 80, listening on all interfaces and serving <code>$apache::docroot</code>.</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache&#39;: }\n</code></pre>\n\n<p>To configure a very basic, name-based virtual host</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;first.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/first&#39;,\n }\n</code></pre>\n\n<p><em>Note:</em> The default priority is 15. If nothing matches this priority, the alphabetically first name-based vhost will be used. This is also true if you pass a higher priority and no names match anything else.</p>\n\n<p>A slightly more complicated example, which moves the docroot owner/group</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;second.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/second&#39;,\n docroot_owner =&gt; &#39;third&#39;,\n docroot_group =&gt; &#39;third&#39;,\n }\n</code></pre>\n\n<p>To set up a virtual host with SSL and default SSL certificates</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;ssl.example.com&#39;:\n port =&gt; &#39;443&#39;,\n docroot =&gt; &#39;/var/www/ssl&#39;,\n ssl =&gt; true,\n }\n</code></pre>\n\n<p>To set up a virtual host with SSL and specific SSL certificates</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;fourth.example.com&#39;:\n port =&gt; &#39;443&#39;,\n docroot =&gt; &#39;/var/www/fourth&#39;,\n ssl =&gt; true,\n ssl_cert =&gt; &#39;/etc/ssl/fourth.example.com.cert&#39;,\n ssl_key =&gt; &#39;/etc/ssl/fourth.example.com.key&#39;,\n }\n</code></pre>\n\n<p>To set up a virtual host with IP address different than &#39;*&#39;</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;subdomain.example.com&#39;:\n ip =&gt; &#39;127.0.0.1&#39;,\n port =&gt; &#39;80&#39;,\n docrout =&gt; &#39;/var/www/subdomain&#39;,\n }\n</code></pre>\n\n<p>To set up a virtual host with wildcard alias for subdomain mapped to same named directory\n<code>http://examle.com.loc =&gt; /var/www/example.com</code></p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;subdomain.loc&#39;:\n vhost_name =&gt; &#39;*&#39;,\n port =&gt; &#39;80&#39;,\n virtual_docroot&#39; =&gt; &#39;/var/www/%-2+&#39;,\n docroot =&gt; &#39;/var/www&#39;,\n serveraliases =&gt; [&#39;*.loc&#39;,],\n }\n</code></pre>\n\n<p>To set up a virtual host with suPHP</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;suphp.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/home/appuser/myphpapp&#39;,\n suphp_addhandler =&gt; &#39;x-httpd-php&#39;,\n suphp_engine =&gt; &#39;on&#39;,\n suphp_configpath =&gt; &#39;/etc/php5/apache2&#39;,\n directories =&gt; { path =&gt; &#39;/home/appuser/myphpapp&#39;,\n &#39;suphp&#39; =&gt; { user =&gt; &#39;myappuser&#39;, group =&gt; &#39;myappgroup&#39; },\n }\n }\n</code></pre>\n\n<p>To set up a virtual host with WSGI</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;wsgi.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/pythonapp&#39;,\n wsgi_daemon_process =&gt; &#39;wsgi&#39;,\n wsgi_daemon_process_options =&gt;\n { processes =&gt; &#39;2&#39;, threads =&gt; &#39;15&#39;, display-name =&gt; &#39;%{GROUP}&#39; },\n wsgi_process_group =&gt; &#39;wsgi&#39;,\n wsgi_script_aliases =&gt; { &#39;/&#39; =&gt; &#39;/var/www/demo.wsgi&#39; },\n }\n</code></pre>\n\n<p>Starting 2.2.16, httpd supports <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_dir.html#fallbackresource\">FallbackResource</a> which is a simple replace for common RewriteRules:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;wordpress.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/wordpress&#39;,\n fallbackresource =&gt; &#39;/index.php&#39;,\n }\n</code></pre>\n\n<p>Please note that the <code>disabled</code> argument to FallbackResource is only supported since 2.2.24.</p>\n\n<p>To see a list of all virtual host parameters, <a href=\"#defined-type-apachevhost\">please go here</a>. To see an extensive list of virtual host examples <a href=\"#virtual-host-examples\">please look here</a>.</p>\n\n<h2>Usage</h2>\n\n<h3>Classes and Defined Types</h3>\n\n<p>This module modifies Apache configuration files and directories and will purge any configuration not managed by Puppet. Configuration of Apache should be managed by Puppet, as non-puppet configuration files can cause unexpected failures.</p>\n\n<p>It is possible to temporarily disable full Puppet management by setting the <code>purge_configs</code> parameter within the base <code>apache</code> class to &#39;false&#39;. This option should only be used as a temporary means of saving and relocating customized configurations.</p>\n\n<h4>Class: <code>apache</code></h4>\n\n<p>The Apache module&#39;s primary class, <code>apache</code>, guides the basic setup of Apache on your system.</p>\n\n<p>You may establish a default vhost in this class, the <code>vhost</code> class, or both. You may add additional vhost configurations for specific virtual hosts using a declaration of the <code>vhost</code> type.</p>\n\n<p><strong>Parameters within <code>apache</code>:</strong></p>\n\n<h5><code>default_mods</code></h5>\n\n<p>Sets up Apache with default settings based on your OS. Defaults to &#39;true&#39;, set to &#39;false&#39; for customized configuration.</p>\n\n<h5><code>default_vhost</code></h5>\n\n<p>Sets up a default virtual host. Defaults to &#39;true&#39;, set to &#39;false&#39; to set up <a href=\"#configure-a-virtual-host\">customized virtual hosts</a>.</p>\n\n<h5><code>default_confd_files</code></h5>\n\n<p>Generates default set of include-able apache configuration files under <code>${apache::confd_dir}</code> directory. These configuration files correspond to what is usually installed with apache package on given platform.</p>\n\n<h5><code>default_ssl_vhost</code></h5>\n\n<p>Sets up a default SSL virtual host. Defaults to &#39;false&#39;.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;default-ssl&#39;:\n port =&gt; 443,\n ssl =&gt; true,\n docroot =&gt; $docroot,\n scriptalias =&gt; $scriptalias,\n serveradmin =&gt; $serveradmin,\n access_log_file =&gt; &quot;ssl_${access_log_file}&quot;,\n }\n</code></pre>\n\n<p>SSL vhosts only respond to HTTPS queries.</p>\n\n<h5><code>default_ssl_cert</code></h5>\n\n<p>The default SSL certification, which is automatically set based on your operating system (<code>/etc/pki/tls/certs/localhost.crt</code> for RedHat, <code>/etc/ssl/certs/ssl-cert-snakeoil.pem</code> for Debian, <code>/usr/local/etc/apache22/server.crt</code> for FreeBSD). This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>default_ssl_key</code></h5>\n\n<p>The default SSL key, which is automatically set based on your operating system (<code>/etc/pki/tls/private/localhost.key</code> for RedHat, <code>/etc/ssl/private/ssl-cert-snakeoil.key</code> for Debian, <code>/usr/local/etc/apache22/server.key</code> for FreeBSD). This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>default_ssl_chain</code></h5>\n\n<p>The default SSL chain, which is automatically set to &#39;undef&#39;. This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>default_ssl_ca</code></h5>\n\n<p>The default certificate authority, which is automatically set to &#39;undef&#39;. This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>default_ssl_crl_path</code></h5>\n\n<p>The default certificate revocation list path, which is automatically set to &#39;undef&#39;. This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>default_ssl_crl</code></h5>\n\n<p>The default certificate revocation list to use, which is automatically set to &#39;undef&#39;. This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>service_name</code></h5>\n\n<p>Name of apache service to run. Defaults to: <code>&#39;httpd&#39;</code> on RedHat, <code>&#39;apache2&#39;</code> on Debian, and <code>&#39;apache22&#39;</code> on FreeBSD.</p>\n\n<h5><code>service_enable</code></h5>\n\n<p>Determines whether the &#39;httpd&#39; service is enabled when the machine is booted. Defaults to &#39;true&#39;.</p>\n\n<h5><code>service_ensure</code></h5>\n\n<p>Determines whether the service should be running. Can be set to &#39;undef&#39; which is useful when you want to let the service be managed by some other application like pacemaker. Defaults to &#39;running&#39;.</p>\n\n<h5><code>purge_configs</code></h5>\n\n<p>Removes all other apache configs and vhosts, which is automatically set to true. Setting this to false is a stopgap measure to allow the apache module to coexist with existing or otherwise managed configuration. It is recommended that you move your configuration entirely to resources within this module.</p>\n\n<h5><code>serveradmin</code></h5>\n\n<p>Sets the server administrator. Defaults to &#39;root@localhost&#39;.</p>\n\n<h5><code>servername</code></h5>\n\n<p>Sets the servername. Defaults to fqdn provided by facter.</p>\n\n<h5><code>server_root</code></h5>\n\n<p>A value to be set as <code>ServerRoot</code> in main configuration file (<code>httpd.conf</code>). Defaults to <code>/etc/httpd</code> on RedHat, <code>/etc/apache2</code> on Debian and <code>/usr/local</code> on FreeBSD.</p>\n\n<h5><code>sendfile</code></h5>\n\n<p>Makes Apache use the Linux kernel &#39;sendfile&#39; to serve static files. Defaults to &#39;On&#39;.</p>\n\n<h5><code>server_root</code></h5>\n\n<p>A value to be set as <code>ServerRoot</code> in main configuration file (<code>httpd.conf</code>). Defaults to <code>/etc/httpd</code> on RedHat and <code>/etc/apache2</code> on Debian.</p>\n\n<h5><code>error_documents</code></h5>\n\n<p>Enables custom error documents. Defaults to &#39;false&#39;.</p>\n\n<h5><code>httpd_dir</code></h5>\n\n<p>Changes the base location of the configuration directories used for the service. This is useful for specially repackaged HTTPD builds but may have unintended consequences when used in combination with the default distribution packages. Default is based on your OS.</p>\n\n<h5><code>confd_dir</code></h5>\n\n<p>Changes the location of the configuration directory your custom configuration files are placed in. Default is based on your OS.</p>\n\n<h5><code>vhost_dir</code></h5>\n\n<p>Changes the location of the configuration directory your virtual host configuration files are placed in. Default is based on your OS.</p>\n\n<h5><code>mod_dir</code></h5>\n\n<p>Changes the location of the configuration directory your Apache modules configuration files are placed in. Default is based on your OS.</p>\n\n<h5><code>mpm_module</code></h5>\n\n<p>Configures which mpm module is loaded and configured for the httpd process by the <code>apache::mod::event</code>, <code>apache::mod::itk</code>, <code>apache::mod::peruser</code>, <code>apache::mod::prefork</code> and <code>apache::mod::worker</code> classes. Must be set to <code>false</code> to explicitly declare <code>apache::mod::event</code>, <code>apache::mod::itk</code>, <code>apache::mod::peruser</code>, <code>apache::mod::prefork</code> or <code>apache::mod::worker</code> classes with parameters. All possible values are <code>event</code>, <code>itk</code>, <code>peruser</code>, <code>prefork</code>, <code>worker</code> (valid values depend on agent&#39;s OS), or the boolean <code>false</code>. Defaults to <code>prefork</code> on RedHat and FreeBSD and <code>worker</code> on Debian. Note: on FreeBSD switching between different mpm modules is quite difficult (but possible). Before changing <code>$mpm_module</code> one has to deinstall all packages that depend on currently installed <code>apache</code>.</p>\n\n<h5><code>conf_template</code></h5>\n\n<p>Setting this allows you to override the template used for the main apache configuration file. This is a potentially risky thing to do as this module has been built around the concept of a minimal configuration file with most of the configuration coming in the form of conf.d/ entries. Defaults to &#39;apache/httpd.conf.erb&#39;.</p>\n\n<h5><code>keepalive</code></h5>\n\n<p>Setting this allows you to enable persistent connections.</p>\n\n<h5><code>keepalive_timeout</code></h5>\n\n<p>Amount of time the server will wait for subsequent requests on a persistent connection. Defaults to &#39;15&#39;.</p>\n\n<h5><code>logroot</code></h5>\n\n<p>Changes the location of the directory Apache log files are placed in. Defaut is based on your OS.</p>\n\n<h5><code>log_level</code></h5>\n\n<p>Changes the verbosity level of the error log. Defaults to &#39;warn&#39;. Valid values are <code>emerg</code>, <code>alert</code>, <code>crit</code>, <code>error</code>, <code>warn</code>, <code>notice</code>, <code>info</code> or <code>debug</code>.</p>\n\n<h5><code>ports_file</code></h5>\n\n<p>Changes the name of the file containing Apache ports configuration. Default is <code>${conf_dir}/ports.conf</code>.</p>\n\n<h5><code>server_tokens</code></h5>\n\n<p>Controls how much information Apache sends to the browser about itself and the operating system. See Apache documentation for &#39;ServerTokens&#39;. Defaults to &#39;OS&#39;.</p>\n\n<h5><code>server_signature</code></h5>\n\n<p>Allows the configuration of a trailing footer line under server-generated documents. See Apache documentation for &#39;ServerSignature&#39;. Defaults to &#39;On&#39;.</p>\n\n<h5><code>trace_enable</code></h5>\n\n<p>Controls, how TRACE requests per RFC 2616 are handled. See Apache documentation for &#39;TraceEnable&#39;. Defaults to &#39;On&#39;.</p>\n\n<h5><code>manage_user</code></h5>\n\n<p>Setting this to false will avoid the user resource to be created by this module. This is useful when you already have a user created in another puppet module and that you want to used it to run apache. Without this, it would result in a duplicate resource error.</p>\n\n<h5><code>manage_group</code></h5>\n\n<p>Setting this to false will avoid the group resource to be created by this module. This is useful when you already have a group created in another puppet module and that you want to used it for apache. Without this, it would result in a duplicate resource error.</p>\n\n<h5><code>package_ensure</code></h5>\n\n<p>Allow control over the package ensure statement. This is useful if you want to make sure apache is always at the latest version or whether it is only installed.</p>\n\n<h4>Class: <code>apache::default_mods</code></h4>\n\n<p>Installs default Apache modules based on what OS you are running</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache::default_mods&#39;: }\n</code></pre>\n\n<h4>Defined Type: <code>apache::mod</code></h4>\n\n<p>Used to enable arbitrary Apache httpd modules for which there is no specific <code>apache::mod::[name]</code> class. The <code>apache::mod</code> defined type will also install the required packages to enable the module, if any.</p>\n\n<pre lang=\"puppet\"><code> apache::mod { &#39;rewrite&#39;: }\n apache::mod { &#39;ldap&#39;: }\n</code></pre>\n\n<h4>Classes: <code>apache::mod::[name]</code></h4>\n\n<p>There are many <code>apache::mod::[name]</code> classes within this module that can be declared using <code>include</code>:</p>\n\n<ul>\n<li><code>alias</code></li>\n<li><code>auth_basic</code></li>\n<li><code>auth_kerb</code></li>\n<li><code>autoindex</code></li>\n<li><code>cache</code></li>\n<li><code>cgi</code></li>\n<li><code>cgid</code></li>\n<li><code>dav</code></li>\n<li><code>dav_fs</code></li>\n<li><code>dav_svn</code></li>\n<li><code>deflate</code></li>\n<li><code>dev</code></li>\n<li><code>dir</code>*</li>\n<li><code>disk_cache</code></li>\n<li><code>event</code></li>\n<li><code>fastcgi</code></li>\n<li><code>fcgid</code></li>\n<li><code>headers</code></li>\n<li><code>info</code></li>\n<li><code>itk</code></li>\n<li><code>ldap</code></li>\n<li><code>mime</code></li>\n<li><code>mime_magic</code>*</li>\n<li><code>mpm_event</code></li>\n<li><code>negotiation</code></li>\n<li><code>nss</code>*</li>\n<li><code>passenger</code>*</li>\n<li><code>perl</code></li>\n<li><code>peruser</code></li>\n<li><code>php</code> (requires <a href=\"#mpm_module\"><code>mpm_module</code></a> set to <code>prefork</code>)</li>\n<li><code>prefork</code>*</li>\n<li><code>proxy</code>*</li>\n<li><code>proxy_ajp</code></li>\n<li><code>proxy_html</code></li>\n<li><code>proxy_http</code></li>\n<li><code>python</code></li>\n<li><code>reqtimeout</code></li>\n<li><code>rewrite</code></li>\n<li><code>rpaf</code>*</li>\n<li><code>setenvif</code></li>\n<li><code>ssl</code>* (see <a href=\"#class-apachemodssl\">apache::mod::ssl</a> below)</li>\n<li><code>status</code>*</li>\n<li><code>suphp</code></li>\n<li><code>userdir</code>*</li>\n<li><code>vhost_alias</code></li>\n<li><code>worker</code>*</li>\n<li><code>wsgi</code> (see <a href=\"#class-apachemodwsgi\">apache::mod::wsgi</a> below)</li>\n<li><code>xsendfile</code></li>\n</ul>\n\n<p>Modules noted with a * indicate that the module has settings and, thus, a template that includes parameters. These parameters control the module&#39;s configuration. Most of the time, these parameters will not require any configuration or attention.</p>\n\n<p>The modules mentioned above, and other Apache modules that have templates, will cause template files to be dropped along with the mod install, and the module will not work without the template. Any mod without a template will install package but drop no files.</p>\n\n<h4>Class: <code>apache::mod::ssl</code></h4>\n\n<p>Installs Apache SSL capabilities and utilizes <code>ssl.conf.erb</code> template. These are the defaults:</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache::mod::ssl&#39;:\n ssl_compression =&gt; false,\n ssl_options =&gt; [ &#39;StdEnvVars&#39; ],\n }\n</code></pre>\n\n<p>To <em>use</em> SSL with a virtual host, you must either set the<code>default_ssl_vhost</code> parameter in <code>apache</code> to &#39;true&#39; or set the <code>ssl</code> parameter in <code>apache::vhost</code> to &#39;true&#39;.</p>\n\n<h4>Class: <code>apache::mod::wsgi</code></h4>\n\n<pre lang=\"puppet\"><code> class { &#39;apache::mod::wsgi&#39;:\n wsgi_socket_prefix =&gt; &quot;\\${APACHE_RUN_DIR}WSGI&quot;,\n wsgi_python_home =&gt; &#39;/path/to/virtenv&#39;,\n wsgi_python_path =&gt; &#39;/path/to/virtenv/site-packages&#39;,\n }\n</code></pre>\n\n<h4>Defined Type: <code>apache::vhost</code></h4>\n\n<p>The Apache module allows a lot of flexibility in the set up and configuration of virtual hosts. This flexibility is due, in part, to <code>vhost</code>&#39;s setup as a defined resource type, which allows it to be evaluated multiple times with different parameters.</p>\n\n<p>The <code>vhost</code> defined type allows you to have specialized configurations for virtual hosts that have requirements outside of the defaults. You can set up a default vhost within the base <code>apache</code> class as well as set a customized vhost setup as default. Your customized vhost (priority 10) will be privileged over the base class vhost (15).</p>\n\n<p>If you have a series of specific configurations and do not want a base <code>apache</code> class default vhost, make sure to set the base class default host to &#39;false&#39;.</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache&#39;:\n default_vhost =&gt; false,\n }\n</code></pre>\n\n<p><strong>Parameters within <code>apache::vhost</code>:</strong></p>\n\n<p>The default values for each parameter will vary based on operating system and type of virtual host.</p>\n\n<h5><code>access_log</code></h5>\n\n<p>Specifies whether <code>*_access.log</code> directives should be configured. Valid values are &#39;true&#39; and &#39;false&#39;. Defaults to &#39;true&#39;.</p>\n\n<h5><code>access_log_file</code></h5>\n\n<p>Points to the <code>*_access.log</code> file. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>access_log_pipe</code></h5>\n\n<p>Specifies a pipe to send access log messages to. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>access_log_syslog</code></h5>\n\n<p>Sends all access log messages to syslog. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>access_log_format</code></h5>\n\n<p>Specifies either a LogFormat nickname or custom format string for access log. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>add_listen</code></h5>\n\n<p>Determines whether the vhost creates a listen statement. The default value is &#39;true&#39;.</p>\n\n<p>Setting <code>add_listen</code> to &#39;false&#39; stops the vhost from creating a listen statement, and this is important when you combine vhosts that are not passed an <code>ip</code> parameter with vhosts that <em>are</em> passed the <code>ip</code> parameter.</p>\n\n<h5><code>aliases</code></h5>\n\n<p>Passes a list of hashes to the vhost to create <code>Alias</code> or <code>AliasMatch</code> statements as per the <a href=\"http://httpd.apache.org/docs/current/mod/mod_alias.html\"><code>mod_alias</code> documentation</a>. Each hash is expected to be of the form:</p>\n\n<pre><code>aliases =&gt; [\n { aliasmatch =&gt; &#39;^/image/(.*)\\.jpg$&#39;, path =&gt; &#39;/files/jpg.images/$1.jpg&#39; }\n { alias =&gt; &#39;/image&#39;, path =&gt; &#39;/ftp/pub/image&#39; },\n],\n</code></pre>\n\n<p>For <code>Alias</code> and <code>AliasMatch</code> to work, each will need a corresponding <code>&lt;Directory /path/to/directory&gt;</code> or <code>&lt;Location /path/to/directory&gt;</code> block. The <code>Alias</code> and <code>AliasMatch</code> directives are created in the order specified in the <code>aliases</code> paramter. As described in the <a href=\"http://httpd.apache.org/docs/current/mod/mod_alias.html\"><code>mod_alias</code> documentation</a> more specific <code>Alias</code> or <code>AliasMatch</code> directives should come before the more general ones to avoid shadowing.</p>\n\n<p><strong>Note:</strong> If <code>apache::mod::passenger</code> is loaded and <code>PassengerHighPerformance true</code> is set, then <code>Alias</code> may have issues honouring the <code>PassengerEnabled off</code> statement. See <a href=\"http://www.conandalton.net/2010/06/passengerenabled-off-not-working.html\">this article</a> for details.</p>\n\n<h5><code>block</code></h5>\n\n<p>Specifies the list of things Apache will block access to. The default is an empty set, &#39;[]&#39;. Currently, the only option is &#39;scm&#39;, which blocks web access to .svn, .git and .bzr directories. To add to this, please see the <a href=\"#development\">Development</a> section.</p>\n\n<h5><code>custom_fragment</code></h5>\n\n<p>Pass a string of custom configuration directives to be placed at the end of the vhost configuration.</p>\n\n<h5><code>default_vhost</code></h5>\n\n<p>Sets a given <code>apache::vhost</code> as the default to serve requests that do not match any other <code>apache::vhost</code> definitions. The default value is &#39;false&#39;.</p>\n\n<h5><code>directories</code></h5>\n\n<p>Passes a list of hashes to the vhost to create <code>&lt;Directory /path/to/directory&gt;...&lt;/Directory&gt;</code> directive blocks as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/core.html#directory\">Apache core documentation</a>. The <code>path</code> key is required in these hashes. An optional <code>provider</code> defaults to <code>directory</code>. Usage will typically look like:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [\n { path =&gt; &#39;/path/to/directory&#39;, &lt;directive&gt; =&gt; &lt;value&gt; },\n { path =&gt; &#39;/path/to/another/directory&#39;, &lt;directive&gt; =&gt; &lt;value&gt; },\n ],\n }\n</code></pre>\n\n<p><em>Note:</em> At least one directory should match <code>docroot</code> parameter, once you start declaring directories <code>apache::vhost</code> assumes that all required <code>&lt;Directory&gt;</code> blocks will be declared.</p>\n\n<p><em>Note:</em> If not defined a single default <code>&lt;Directory&gt;</code> block will be created that matches the <code>docroot</code> parameter.</p>\n\n<p><code>provider</code> can be set to any of <code>directory</code>, <code>files</code>, or <code>location</code>. If the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#files\">pathspec starts with a <code>~</code></a>, httpd will interpret this as the equivalent of <code>DirectoryMatch</code>, <code>FilesMatch</code>, or <code>LocationMatch</code>, respectively.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;files.example.net&#39;:\n docroot =&gt; &#39;/var/www/files&#39;,\n directories =&gt; [\n { path =&gt; &#39;~ (\\.swp|\\.bak|~)$&#39;, &#39;provider&#39; =&gt; &#39;files&#39;, &#39;deny&#39; =&gt; &#39;from all&#39; },\n ],\n }\n</code></pre>\n\n<p>The directives will be embedded within the <code>Directory</code> (<code>Files</code>, or <code>Location</code>) directive block, missing directives should be undefined and not be added, resulting in their default vaules in Apache. Currently this is the list of supported directives:</p>\n\n<h6><code>addhandlers</code></h6>\n\n<p>Sets <code>AddHandler</code> directives as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_mime.html#addhandler\">Apache Core documentation</a>. Accepts a list of hashes of the form <code>{ handler =&gt; &#39;handler-name&#39;, extensions =&gt; [&#39;extension&#39;]}</code>. Note that <code>extensions</code> is a list of extenstions being handled by the handler.\nAn example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;,\n addhandlers =&gt; [ { handler =&gt; &#39;cgi-script&#39;, extensions =&gt; [&#39;.cgi&#39;]} ],\n } ],\n }\n</code></pre>\n\n<h6><code>allow</code></h6>\n\n<p>Sets an <code>Allow</code> directive as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#allow\">Apache Core documentation</a>. An example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, allow =&gt; &#39;from example.org&#39; } ],\n }\n</code></pre>\n\n<h6><code>allow_override</code></h6>\n\n<p>Sets the usage of <code>.htaccess</code> files as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/core.html#allowoverride\">Apache core documentation</a>. Should accept in the form of a list or a string. An example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, allow_override =&gt; [&#39;AuthConfig&#39;, &#39;Indexes&#39;] } ],\n }\n</code></pre>\n\n<h6><code>deny</code></h6>\n\n<p>Sets an <code>Deny</code> directive as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#deny\">Apache Core documentation</a>. An example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, deny =&gt; &#39;from example.org&#39; } ],\n }\n</code></pre>\n\n<h6><code>error_documents</code></h6>\n\n<p>A list of hashes which can be used to override the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#errordocument\">ErrorDocument</a> settings for this directory. Example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n directories =&gt; [ { path =&gt; &#39;/srv/www&#39;\n error_documents =&gt; [\n { &#39;error_code&#39; =&gt; &#39;503&#39;, &#39;document&#39; =&gt; &#39;/service-unavail&#39; },\n ],\n }]\n }\n</code></pre>\n\n<h6><code>headers</code></h6>\n\n<p>Adds lines for <code>Header</code> directives as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_headers.html#header\">Apache Header documentation</a>. An example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; {\n path =&gt; &#39;/path/to/directory&#39;,\n headers =&gt; &#39;Set X-Robots-Tag &quot;noindex, noarchive, nosnippet&quot;&#39;,\n },\n }\n</code></pre>\n\n<h6><code>options</code></h6>\n\n<p>Lists the options for the given <code>&lt;Directory&gt;</code> block</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, options =&gt; [&#39;Indexes&#39;,&#39;FollowSymLinks&#39;,&#39;MultiViews&#39;] }],\n }\n</code></pre>\n\n<h6><code>index_options</code></h6>\n\n<p>Styles the list</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, options =&gt; [&#39;Indexes&#39;,&#39;FollowSymLinks&#39;,&#39;MultiViews&#39;], index_options =&gt; [&#39;IgnoreCase&#39;, &#39;FancyIndexing&#39;, &#39;FoldersFirst&#39;, &#39;NameWidth=*&#39;, &#39;DescriptionWidth=*&#39;, &#39;SuppressHTMLPreamble&#39;] }],\n }\n</code></pre>\n\n<h6><code>index_order_default</code></h6>\n\n<p>Sets the order of the list </p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, order =&gt; &#39;Allow,Deny&#39;, index_order_default =&gt; [&#39;Descending&#39;, &#39;Date&#39;]}, ],\n }\n</code></pre>\n\n<h6><code>order</code></h6>\n\n<p>Sets the order of processing <code>Allow</code> and <code>Deny</code> statements as per <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#order\">Apache core documentation</a>. An example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, order =&gt; &#39;Allow,Deny&#39; } ],\n }\n</code></pre>\n\n<h6><code>auth_type</code></h6>\n\n<p>Sets the value for <code>AuthType</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#authtype\">Apache AuthType\ndocumentation</a>.</p>\n\n<h6><code>auth_name</code></h6>\n\n<p>Sets the value for <code>AuthName</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#authname\">Apache AuthName\ndocumentation</a>.</p>\n\n<h6><code>auth_digest_algorithm</code></h6>\n\n<p>Sets the value for <code>AuthDigestAlgorithm</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestalgorithm\">Apache\nAuthDigestAlgorithm\ndocumentation</a></p>\n\n<h6><code>auth_digest_domain</code></h6>\n\n<p>Sets the value for <code>AuthDigestDomain</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestdomain\">Apache AuthDigestDomain\ndocumentation</a>.</p>\n\n<h6><code>auth_digest_nonce_lifetime</code></h6>\n\n<p>Sets the value for <code>AuthDigestNonceLifetime</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestnoncelifetime\">Apache\nAuthDigestNonceLifetime\ndocumentation</a></p>\n\n<h6><code>auth_digest_provider</code></h6>\n\n<p>Sets the value for <code>AuthDigestProvider</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestprovider\">Apache AuthDigestProvider\ndocumentation</a>.</p>\n\n<h6><code>auth_digest_qop</code></h6>\n\n<p>Sets the value for <code>AuthDigestQop</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestqop\">Apache AuthDigestQop\ndocumentation</a>.</p>\n\n<h6><code>auth_digest_shmem_size</code></h6>\n\n<p>Sets the value for <code>AuthAuthDigestShmemSize</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestshmemsize\">Apache AuthDigestShmemSize\ndocumentation</a>.</p>\n\n<h6><code>auth_basic_authoritative</code></h6>\n\n<p>Sets the value for <code>AuthBasicAuthoritative</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_basic.html#authbasicauthoritative\">Apache\nAuthBasicAuthoritative\ndocumentation</a>.</p>\n\n<h6><code>auth_basic_fake</code></h6>\n\n<p>Sets the value for <code>AuthBasicFake</code> as per the <a href=\"https://httpd.apache.org/docs/trunk/mod/mod_auth_basic.html#authbasicfake\">Apache AuthBasicFake\ndocumentation</a>.</p>\n\n<h6><code>auth_basic_provider</code></h6>\n\n<p>Sets the value for <code>AuthBasicProvider</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_basic.html#authbasicprovider\">Apache AuthBasicProvider\ndocumentation</a>.</p>\n\n<h6><code>auth_user_file</code></h6>\n\n<p>Sets the value for <code>AuthUserFile</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_authn_file.html#authuserfile\">Apache AuthUserFile\ndocumentation</a>.</p>\n\n<h6><code>auth_require</code></h6>\n\n<p>Sets the value for <code>AuthName</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#require\">Apache Require\ndocumentation</a></p>\n\n<h6><code>passenger_enabled</code></h6>\n\n<p>Sets the value for the <code>PassengerEnabled</code> directory to <code>on</code> or <code>off</code> as per the <a href=\"http://www.modrails.com/documentation/Users%20guide%20Apache.html#PassengerEnabled\">Passenger documentation</a>.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, passenger_enabled =&gt; &#39;off&#39; } ],\n }\n</code></pre>\n\n<p><strong>Note:</strong> This directive requires <code>apache::mod::passenger</code> to be active, Apache may not start with an unrecognised directive without it.</p>\n\n<p><strong>Note:</strong> Be aware that there is an <a href=\"http://www.conandalton.net/2010/06/passengerenabled-off-not-working.html\">issue</a> using the <code>PassengerEnabled</code> directive with the <code>PassengerHighPerformance</code> directive.</p>\n\n<h6><code>ssl_options</code></h6>\n\n<p>String or list of <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_ssl.html#ssloptions\"><code>SSLOptions</code></a> for the given <code>&lt;Directory&gt;</code> block. This overrides, or refines the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_ssl.html#ssloptions\"><code>SSLOptions</code></a> of the parent block (either vhost, or server).</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;secure.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [\n { path =&gt; &#39;/path/to/directory&#39;, ssl_options =&gt; &#39;+ExportCertData&#39; }\n { path =&gt; &#39;/path/to/different/dir&#39;, ssl_options =&gt; [ &#39;-StdEnvVars&#39;, &#39;+ExportCertData&#39;] },\n ],\n }\n</code></pre>\n\n<h6><code>suphp</code></h6>\n\n<p>An array containing two values: User and group for the <a href=\"http://www.suphp.org/DocumentationView.html?file=apache/CONFIG\">suPHP_UserGroup</a> setting.\nThis directive must be used with <code>suphp_engine =&gt; on</code> in the vhost declaration. This directive only works in <code>&lt;Directory&gt;</code> or <code>&lt;Location&gt;</code>.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;secure.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [\n { path =&gt; &#39;/path/to/directory&#39;, suphp =&gt; { user =&gt; &#39;myappuser&#39;, group =&gt; &#39;myappgroup&#39; }\n ],\n }\n</code></pre>\n\n<h6><code>custom_fragment</code></h6>\n\n<p>Pass a string of custom configuration directives to be placed at the end of the\ndirectory configuration.</p>\n\n<h5><code>directoryindex</code></h5>\n\n<p>Set a DirectoryIndex directive, to set the list of resources to look for, when the client requests an index of the directory by specifying a / at the end of the directory name..</p>\n\n<h5><code>docroot</code></h5>\n\n<p>Provides the DocumentRoot directive, identifying the directory Apache serves files from.</p>\n\n<h5><code>docroot_group</code></h5>\n\n<p>Sets group access to the docroot directory. Defaults to &#39;root&#39;.</p>\n\n<h5><code>docroot_owner</code></h5>\n\n<p>Sets individual user access to the docroot directory. Defaults to &#39;root&#39;.</p>\n\n<h5><code>error_log</code></h5>\n\n<p>Specifies whether <code>*_error.log</code> directives should be configured. Defaults to &#39;true&#39;.</p>\n\n<h5><code>error_log_file</code></h5>\n\n<p>Points to the <code>*_error.log</code> file. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>error_log_pipe</code></h5>\n\n<p>Specifies a pipe to send error log messages to. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>error_log_syslog</code></h5>\n\n<p>Sends all error log messages to syslog. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>error_documents</code></h5>\n\n<p>A list of hashes which can be used to override the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#errordocument\">ErrorDocument</a> settings for this vhost. Defaults to <code>[]</code>. Example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n error_documents =&gt; [\n { &#39;error_code&#39; =&gt; &#39;503&#39;, &#39;document&#39; =&gt; &#39;/service-unavail&#39; },\n { &#39;error_code&#39; =&gt; &#39;407&#39;, &#39;document&#39; =&gt; &#39;https://example.com/proxy/login&#39; },\n ],\n }\n</code></pre>\n\n<h5><code>ensure</code></h5>\n\n<p>Specifies if the vhost file is present or absent.</p>\n\n<h5><code>fastcgi_server</code></h5>\n\n<p>Specifies the filename as an external FastCGI application. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>fastcgi_socket</code></h5>\n\n<p>Filename used to communicate with the web server. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>fastcgi_dir</code></h5>\n\n<p>Directory to enable for FastCGI. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>additional_includes</code></h5>\n\n<p>Specifies paths to additional static vhost-specific Apache configuration files.\nThis option is useful when you need to implement a unique and/or custom\nconfiguration not supported by this module.</p>\n\n<h5><code>ip</code></h5>\n\n<p>The IP address the vhost listens on. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>ip_based</code></h5>\n\n<p>Enables an IP-based vhost. This parameter inhibits the creation of a NameVirtualHost directive, since those are used to funnel requests to name-based vhosts. Defaults to &#39;false&#39;.</p>\n\n<h5><code>logroot</code></h5>\n\n<p>Specifies the location of the virtual host&#39;s logfiles. Defaults to <code>/var/log/&lt;apache log location&gt;/</code>.</p>\n\n<h5><code>log_level</code></h5>\n\n<p>Specifies the verbosity level of the error log. Defaults to <code>warn</code> for the global server configuration and can be overridden on a per-vhost basis using this parameter. Valid value for <code>log_level</code> is one of <code>emerg</code>, <code>alert</code>, <code>crit</code>, <code>error</code>, <code>warn</code>, <code>notice</code>, <code>info</code> or <code>debug</code>.</p>\n\n<h5><code>no_proxy_uris</code></h5>\n\n<p>Specifies URLs you do not want to proxy. This parameter is meant to be used in combination with <code>proxy_dest</code>.</p>\n\n<h5><code>options</code></h5>\n\n<p>Lists the options for the given virtual host</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n options =&gt; [&#39;Indexes&#39;,&#39;FollowSymLinks&#39;,&#39;MultiViews&#39;],\n }\n</code></pre>\n\n<h5><code>override</code></h5>\n\n<p>Sets the overrides for the given virtual host. Accepts an array of AllowOverride arguments.</p>\n\n<h5><code>port</code></h5>\n\n<p>Sets the port the host is configured on.</p>\n\n<h5><code>priority</code></h5>\n\n<p>Sets the relative load-order for Apache httpd VirtualHost configuration files. Defaults to &#39;25&#39;.</p>\n\n<p>If nothing matches the priority, the first name-based vhost will be used. Likewise, passing a higher priority will cause the alphabetically first name-based vhost to be used if no other names match.</p>\n\n<p><em>Note</em>: You should not need to use this parameter. However, if you do use it, be aware that the <code>default_vhost</code> parameter for <code>apache::vhost</code> passes a priority of &#39;15&#39;.</p>\n\n<h5><code>proxy_dest</code></h5>\n\n<p>Specifies the destination address of a proxypass configuration. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>proxy_pass</code></h5>\n\n<p>Specifies an array of path =&gt; uri for a proxypass configuration. Defaults to &#39;undef&#39;.</p>\n\n<p>Example:</p>\n\n<pre lang=\"puppet\"><code>$proxy_pass = [\n { &#39;path&#39; =&gt; &#39;/a&#39;, &#39;url&#39; =&gt; &#39;http://backend-a/&#39; },\n { &#39;path&#39; =&gt; &#39;/b&#39;, &#39;url&#39; =&gt; &#39;http://backend-b/&#39; },\n { &#39;path&#39; =&gt; &#39;/c&#39;, &#39;url&#39; =&gt; &#39;http://backend-a/c&#39; }\n]\n\napache::vhost { &#39;site.name.fdqn&#39;:\n …\n proxy_pass =&gt; $proxy_pass,\n}\n</code></pre>\n\n<h5><code>rack_base_uris</code></h5>\n\n<p>Specifies the resource identifiers for a rack configuration. The file paths specified will be listed as rack application roots for passenger/rack in the <code>_rack.erb</code> template. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>redirect_dest</code></h5>\n\n<p>Specifies the address to redirect to. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>redirect_source</code></h5>\n\n<p>Specifies the source items? that will redirect to the destination specified in <code>redirect_dest</code>. If more than one item for redirect is supplied, the source and destination must be the same length, and the items are order-dependent.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n redirect_source =&gt; [&#39;/images&#39;,&#39;/downloads&#39;],\n redirect_dest =&gt; [&#39;http://img.example.com/&#39;,&#39;http://downloads.example.com/&#39;],\n }\n</code></pre>\n\n<h5><code>redirect_status</code></h5>\n\n<p>Specifies the status to append to the redirect. Defaults to &#39;undef&#39;.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n redirect_status =&gt; [&#39;temp&#39;,&#39;permanent&#39;],\n }\n</code></pre>\n\n<h5><code>request_headers</code></h5>\n\n<p>Specifies additional request headers.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n request_headers =&gt; [\n &#39;append MirrorID &quot;mirror 12&quot;&#39;,\n &#39;unset MirrorID&#39;,\n ],\n }\n</code></pre>\n\n<h5><code>rewrite_base</code></h5>\n\n<p>Limits the <code>rewrite_rule</code> to the specified base URL. Defaults to &#39;undef&#39;.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n rewrite_rule =&gt; &#39;^index\\.html$ welcome.html&#39;,\n rewrite_base =&gt; &#39;/blog/&#39;,\n }\n</code></pre>\n\n<p>The above example would limit the index.html -&gt; welcome.html rewrite to only something inside of <a href=\"http://example.com/blog/\">http://example.com/blog/</a>.</p>\n\n<h5><code>rewrite_cond</code></h5>\n\n<p>Rewrites a URL via <code>rewrite_rule</code> based on the truth of specified conditions. For example</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n rewrite_cond =&gt; &#39;%{HTTP_USER_AGENT} ^MSIE&#39;,\n }\n</code></pre>\n\n<p>will rewrite URLs only if the visitor is using IE. Defaults to &#39;undef&#39;.</p>\n\n<p><em>Note</em>: At the moment, each vhost is limited to a single list of rewrite conditions. In the future, you will be able to specify multiple <code>rewrite_cond</code> and <code>rewrite_rules</code> per vhost, so that different conditions get different rewrites.</p>\n\n<h5><code>rewrite_rule</code></h5>\n\n<p>Creates URL rewrite rules. Defaults to &#39;undef&#39;. This parameter allows you to specify, for example, that anyone trying to access index.html will be served welcome.html.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n rewrite_rule =&gt; &#39;^index\\.html$ welcome.html&#39;,\n }\n</code></pre>\n\n<h5><code>scriptalias</code></h5>\n\n<p>Defines a directory of CGI scripts to be aliased to the path &#39;/cgi-bin&#39;</p>\n\n<h5><code>scriptaliases</code></h5>\n\n<p>Passes a list of hashes to the vhost to create <code>ScriptAlias</code> or <code>ScriptAliasMatch</code> statements as per the <a href=\"http://httpd.apache.org/docs/current/mod/mod_alias.html\"><code>mod_alias</code> documentation</a>. Each hash is expected to be of the form:</p>\n\n<pre lang=\"puppet\"><code> scriptaliases =&gt; [\n {\n alias =&gt; &#39;/myscript&#39;,\n path =&gt; &#39;/usr/share/myscript&#39;,\n },\n {\n aliasmatch =&gt; &#39;^/foo(.*)&#39;,\n path =&gt; &#39;/usr/share/fooscripts$1&#39;,\n },\n {\n aliasmatch =&gt; &#39;^/bar/(.*)&#39;,\n path =&gt; &#39;/usr/share/bar/wrapper.sh/$1&#39;,\n },\n {\n alias =&gt; &#39;/neatscript&#39;,\n path =&gt; &#39;/usr/share/neatscript&#39;,\n },\n ]\n</code></pre>\n\n<p>These directives are created in the order specified. As with <code>Alias</code> and <code>AliasMatch</code> directives the more specific aliases should come before the more general ones to avoid shadowing.</p>\n\n<h5><code>serveradmin</code></h5>\n\n<p>Specifies the email address Apache will display when it renders one of its error pages.</p>\n\n<h5><code>serveraliases</code></h5>\n\n<p>Sets the server aliases of the site.</p>\n\n<h5><code>servername</code></h5>\n\n<p>Sets the primary name of the virtual host.</p>\n\n<h5><code>setenv</code></h5>\n\n<p>Used by HTTPD to set environment variables for vhosts. Defaults to &#39;[]&#39;.</p>\n\n<h5><code>setenvif</code></h5>\n\n<p>Used by HTTPD to conditionally set environment variables for vhosts. Defaults to &#39;[]&#39;.</p>\n\n<h5><code>ssl</code></h5>\n\n<p>Enables SSL for the virtual host. SSL vhosts only respond to HTTPS queries. Valid values are &#39;true&#39; or &#39;false&#39;.</p>\n\n<h5><code>ssl_ca</code></h5>\n\n<p>Specifies the certificate authority.</p>\n\n<h5><code>ssl_cert</code></h5>\n\n<p>Specifies the SSL certification.</p>\n\n<h5><code>ssl_protocol</code></h5>\n\n<p>Specifies the SSL Protocol (SSLProtocol).</p>\n\n<h5><code>ssl_cipher</code></h5>\n\n<p>Specifies the SSLCipherSuite.</p>\n\n<h5><code>ssl_honorcipherorder</code></h5>\n\n<p>Sets SSLHonorCipherOrder directive, used to prefer the server&#39;s cipher preference order</p>\n\n<h5><code>ssl_certs_dir</code></h5>\n\n<p>Specifies the location of the SSL certification directory. Defaults to <code>/etc/ssl/certs</code> on Debian and <code>/etc/pki/tls/certs</code> on RedHat.</p>\n\n<h5><code>ssl_chain</code></h5>\n\n<p>Specifies the SSL chain.</p>\n\n<h5><code>ssl_crl</code></h5>\n\n<p>Specifies the certificate revocation list to use.</p>\n\n<h5><code>ssl_crl_path</code></h5>\n\n<p>Specifies the location of the certificate revocation list.</p>\n\n<h5><code>ssl_key</code></h5>\n\n<p>Specifies the SSL key.</p>\n\n<h5><code>ssl_verify_client</code></h5>\n\n<p>Sets <code>SSLVerifyClient</code> directives as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslverifyclient\">Apache Core documentation</a>. Defaults to undef.\nAn example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n …\n ssl_verify_client =&gt; &#39;optional&#39;,\n }\n</code></pre>\n\n<h5><code>ssl_verify_depth</code></h5>\n\n<p>Sets <code>SSLVerifyDepth</code> directives as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslverifydepth\">Apache Core documentation</a>. Defaults to undef.\nAn example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n …\n ssl_verify_depth =&gt; 1,\n }\n</code></pre>\n\n<h5><code>ssl_options</code></h5>\n\n<p>Sets <code>SSLOptions</code> directives as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#ssloptions\">Apache Core documentation</a>. This is the global setting for the vhost and can be a string or an array. Defaults to undef. A single string example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n …\n ssl_options =&gt; &#39;+ExportCertData&#39;,\n }\n</code></pre>\n\n<p>An array of strings example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n …\n ssl_options =&gt; [ &#39;+StrictRequire&#39;, &#39;+ExportCertData&#39; ],\n }\n</code></pre>\n\n<h5><code>ssl_proxyengine</code></h5>\n\n<p>Specifies whether to use <code>SSLProxyEngine</code> or not. Defaults to <code>false</code>.</p>\n\n<h5><code>vhost_name</code></h5>\n\n<p>This parameter is for use with name-based virtual hosting. Defaults to &#39;*&#39;.</p>\n\n<h5><code>itk</code></h5>\n\n<p>Hash containing infos to configure itk as per the <a href=\"http://mpm-itk.sesse.net/\">ITK documentation</a>.</p>\n\n<p>Keys could be:</p>\n\n<ul>\n<li>user + group</li>\n<li>assignuseridexpr</li>\n<li>assigngroupidexpr</li>\n<li>maxclientvhost</li>\n<li>nice</li>\n<li>limituidrange (Linux 3.5.0 or newer)</li>\n<li>limitgidrange (Linux 3.5.0 or newer)</li>\n</ul>\n\n<p>Usage will typically look like:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n itk =&gt; {\n user =&gt; &#39;someuser&#39;,\n group =&gt; &#39;somegroup&#39;,\n },\n }\n</code></pre>\n\n<h3>Virtual Host Examples</h3>\n\n<p>The Apache module allows you to set up pretty much any configuration of virtual host you might desire. This section will address some common configurations. Please see the <a href=\"https://github.com/puppetlabs/puppetlabs-apache/tree/master/tests\">Tests section</a> for even more examples.</p>\n\n<p>Configure a vhost with a server administrator</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;third.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/third&#39;,\n serveradmin =&gt; &#39;admin@example.com&#39;,\n }\n</code></pre>\n\n<hr>\n\n<p>Set up a vhost with aliased servers</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sixth.example.com&#39;:\n serveraliases =&gt; [\n &#39;sixth.example.org&#39;,\n &#39;sixth.example.net&#39;,\n ],\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/fifth&#39;,\n }\n</code></pre>\n\n<hr>\n\n<p>Configure a vhost with a cgi-bin</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;eleventh.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/eleventh&#39;,\n scriptalias =&gt; &#39;/usr/lib/cgi-bin&#39;,\n }\n</code></pre>\n\n<hr>\n\n<p>Set up a vhost with a rack configuration</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;fifteenth.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/fifteenth&#39;,\n rack_base_uris =&gt; [&#39;/rackapp1&#39;, &#39;/rackapp2&#39;],\n }\n</code></pre>\n\n<hr>\n\n<p>Set up a mix of SSL and non-SSL vhosts at the same domain</p>\n\n<pre lang=\"puppet\"><code> #The non-ssl vhost\n apache::vhost { &#39;first.example.com non-ssl&#39;:\n servername =&gt; &#39;first.example.com&#39;,\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/first&#39;,\n }\n\n #The SSL vhost at the same domain\n apache::vhost { &#39;first.example.com ssl&#39;:\n servername =&gt; &#39;first.example.com&#39;,\n port =&gt; &#39;443&#39;,\n docroot =&gt; &#39;/var/www/first&#39;,\n ssl =&gt; true,\n }\n</code></pre>\n\n<hr>\n\n<p>Configure a vhost to redirect non-SSL connections to SSL</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sixteenth.example.com non-ssl&#39;:\n servername =&gt; &#39;sixteenth.example.com&#39;,\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/sixteenth&#39;,\n redirect_status =&gt; &#39;permanent&#39;\n redirect_dest =&gt; &#39;https://sixteenth.example.com/&#39;\n }\n apache::vhost { &#39;sixteenth.example.com ssl&#39;:\n servername =&gt; &#39;sixteenth.example.com&#39;,\n port =&gt; &#39;443&#39;,\n docroot =&gt; &#39;/var/www/sixteenth&#39;,\n ssl =&gt; true,\n }\n</code></pre>\n\n<hr>\n\n<p>Set up IP-based vhosts on any listen port and have them respond to requests on specific IP addresses. In this example, we will set listening on ports 80 and 81. This is required because the example vhosts are not declared with a port parameter.</p>\n\n<pre lang=\"puppet\"><code> apache::listen { &#39;80&#39;: }\n apache::listen { &#39;81&#39;: }\n</code></pre>\n\n<p>Then we will set up the IP-based vhosts</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;first.example.com&#39;:\n ip =&gt; &#39;10.0.0.10&#39;,\n docroot =&gt; &#39;/var/www/first&#39;,\n ip_based =&gt; true,\n }\n apache::vhost { &#39;second.example.com&#39;:\n ip =&gt; &#39;10.0.0.11&#39;,\n docroot =&gt; &#39;/var/www/second&#39;,\n ip_based =&gt; true,\n }\n</code></pre>\n\n<hr>\n\n<p>Configure a mix of name-based and IP-based vhosts. First, we will add two IP-based vhosts on 10.0.0.10, one SSL and one non-SSL</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;The first IP-based vhost, non-ssl&#39;:\n servername =&gt; &#39;first.example.com&#39;,\n ip =&gt; &#39;10.0.0.10&#39;,\n port =&gt; &#39;80&#39;,\n ip_based =&gt; true,\n docroot =&gt; &#39;/var/www/first&#39;,\n }\n apache::vhost { &#39;The first IP-based vhost, ssl&#39;:\n servername =&gt; &#39;first.example.com&#39;,\n ip =&gt; &#39;10.0.0.10&#39;,\n port =&gt; &#39;443&#39;,\n ip_based =&gt; true,\n docroot =&gt; &#39;/var/www/first-ssl&#39;,\n ssl =&gt; true,\n }\n</code></pre>\n\n<p>Then, we will add two name-based vhosts listening on 10.0.0.20</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;second.example.com&#39;:\n ip =&gt; &#39;10.0.0.20&#39;,\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/second&#39;,\n }\n apache::vhost { &#39;third.example.com&#39;:\n ip =&gt; &#39;10.0.0.20&#39;,\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/third&#39;,\n }\n</code></pre>\n\n<p>If you want to add two name-based vhosts so that they will answer on either 10.0.0.10 or 10.0.0.20, you <strong>MUST</strong> declare <code>add_listen =&gt; &#39;false&#39;</code> to disable the otherwise automatic &#39;Listen 80&#39;, as it will conflict with the preceding IP-based vhosts.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;fourth.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/fourth&#39;,\n add_listen =&gt; false,\n }\n apache::vhost { &#39;fifth.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/fifth&#39;,\n add_listen =&gt; false,\n }\n</code></pre>\n\n<h2>Implementation</h2>\n\n<h3>Classes and Defined Types</h3>\n\n<h4>Class: <code>apache::dev</code></h4>\n\n<p>Installs Apache development libraries</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache::dev&#39;: }\n</code></pre>\n\n<p>On FreeBSD you&#39;re required to define <code>apache::package</code> or <code>apache</code> class before <code>apache::dev</code>.</p>\n\n<h4>Defined Type: <code>apache::listen</code></h4>\n\n<p>Controls which ports Apache binds to for listening based on the title:</p>\n\n<pre lang=\"puppet\"><code> apache::listen { &#39;80&#39;: }\n apache::listen { &#39;443&#39;: }\n</code></pre>\n\n<p>Declaring this defined type will add all <code>Listen</code> directives to the <code>ports.conf</code> file in the Apache httpd configuration directory. <code>apache::listen</code> titles should always take the form of: <code>&lt;port&gt;</code>, <code>&lt;ipv4&gt;:&lt;port&gt;</code>, or <code>[&lt;ipv6&gt;]:&lt;port&gt;</code></p>\n\n<p>Apache httpd requires that <code>Listen</code> directives must be added for every port. The <code>apache::vhost</code> defined type will automatically add <code>Listen</code> directives unless the <code>apache::vhost</code> is passed <code>add_listen =&gt; false</code>.</p>\n\n<h4>Defined Type: <code>apache::namevirtualhost</code></h4>\n\n<p>Enables named-based hosting of a virtual host</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache::namevirtualhost`: }\n</code></pre>\n\n<p>Declaring this defined type will add all <code>NameVirtualHost</code> directives to the <code>ports.conf</code> file in the Apache https configuration directory. <code>apache::namevirtualhost</code> titles should always take the form of: <code>*</code>, <code>*:&lt;port&gt;</code>, <code>_default_:&lt;port&gt;</code>, <code>&lt;ip&gt;</code>, or <code>&lt;ip&gt;:&lt;port&gt;</code>.</p>\n\n<h4>Defined Type: <code>apache::balancermember</code></h4>\n\n<p>Define members of a proxy_balancer set (mod_proxy_balancer). Very useful when using exported resources.</p>\n\n<p>On every app server you can export a balancermember like this:</p>\n\n<pre lang=\"puppet\"><code> @@apache::balancermember { &quot;${::fqdn}-puppet00&quot;:\n balancer_cluster =&gt; &#39;puppet00&#39;,\n url =&gt; &quot;ajp://${::fqdn}:8009&quot;\n options =&gt; [&#39;ping=5&#39;, &#39;disablereuse=on&#39;, &#39;retry=5&#39;, &#39;ttl=120&#39;],\n }\n</code></pre>\n\n<p>And on the proxy itself you create the balancer cluster using the defined type apache::balancer:</p>\n\n<pre lang=\"puppet\"><code> apache::balancer { &#39;puppet00&#39;: }\n</code></pre>\n\n<p>If you need to use ProxySet in the balncer config you can do as so:</p>\n\n<pre lang=\"puppet\"><code> apache::balancer { &#39;puppet01&#39;:\n proxy_set =&gt; {&#39;stickysession&#39; =&gt; &#39;JSESSIONID&#39;},\n }\n</code></pre>\n\n<h3>Templates</h3>\n\n<p>The Apache module relies heavily on templates to enable the <code>vhost</code> and <code>apache::mod</code> defined types. These templates are built based on Facter facts around your operating system. Unless explicitly called out, most templates are not meant for configuration.</p>\n\n<h2>Limitations</h2>\n\n<p>This has been tested on Ubuntu Precise, Debian Wheezy, CentOS 5.8, and FreeBSD 9.1.</p>\n\n<h2>Development</h2>\n\n<h3>Overview</h3>\n\n<p>Puppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.</p>\n\n<p>We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.</p>\n\n<p>You can read the complete module contribution guide <a href=\"http://projects.puppetlabs.com/projects/module-site/wiki/Module_contributing\">on the Puppet Labs wiki.</a></p>\n\n<h3>Running tests</h3>\n\n<p>This project contains tests for both <a href=\"http://rspec-puppet.com/\">rspec-puppet</a> and <a href=\"https://github.com/puppetlabs/rspec-system\">rspec-system</a> to verify functionality. For in-depth information please see their respective documentation.</p>\n\n<p>Quickstart:</p>\n\n<pre><code>gem install bundler\nbundle install\nbundle exec rake spec\nbundle exec rake spec:system\n</code></pre>\n\n<h2>Copyright and License</h2>\n\n<p>Copyright (C) 2012 <a href=\"https://www.puppetlabs.com/\">Puppet Labs</a> Inc</p>\n\n<p>Puppet Labs can be contacted at: <a href=\"mailto:info@puppetlabs.com\">info@puppetlabs.com</a></p>\n\n<p>Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at</p>\n\n<p><a href=\"http://www.apache.org/licenses/LICENSE-2.0\">http://www.apache.org/licenses/LICENSE-2.0</a></p>\n\n<p>Unless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an &quot;AS IS&quot; BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.</p>\n</section>",
322
+ "readme": "<section class=\"markdown\"><h1>apache</h1>\n\n<p><a href=\"https://travis-ci.org/puppetlabs/puppetlabs-apache\"><img src=\"https://travis-ci.org/puppetlabs/puppetlabs-apache.png?branch=main\" alt=\"Build Status\"></a></p>\n\n<h4>Table of Contents</h4>\n\n<ol>\n<li><a href=\"#overview\">Overview - What is the Apache module?</a></li>\n<li><a href=\"#module-description\">Module Description - What does the module do?</a></li>\n<li><a href=\"#setup\">Setup - The basics of getting started with Apache</a>\n\n<ul>\n<li><a href=\"#beginning-with-apache\">Beginning with Apache - Installation</a></li>\n<li><a href=\"#configure-a-virtual-host\">Configure a Virtual Host - Basic options for getting started</a></li>\n</ul></li>\n<li><a href=\"#usage\">Usage - The classes, defined types, and their parameters available for configuration</a>\n\n<ul>\n<li><a href=\"#classes-and-defined-types\">Classes and Defined Types</a>\n\n<ul>\n<li><a href=\"#class-apache\">Class: apache</a></li>\n<li><a href=\"#classes-apachemodname\">Classes: apache::mod::*</a></li>\n<li><a href=\"#defined-type-apachevhost\">Defined Type: apache::vhost</a></li>\n</ul></li>\n<li><a href=\"#virtual-host-examples\">Virtual Host Examples - Demonstrations of some configuration options</a></li>\n</ul></li>\n<li><a href=\"#implementation\">Implementation - An under-the-hood peek at what the module is doing</a>\n\n<ul>\n<li><a href=\"#classes-and-defined-types\">Classes and Defined Types</a></li>\n<li><a href=\"#templates\">Templates</a></li>\n</ul></li>\n<li><a href=\"#limitations\">Limitations - OS compatibility, etc.</a></li>\n<li><a href=\"#development\">Development - Guide for contributing to the module</a></li>\n<li><a href=\"#release-notes\">Release Notes - Notes on the most recent updates to the module</a></li>\n</ol>\n\n<h2>Overview</h2>\n\n<p>The Apache module allows you to set up virtual hosts and manage web services with minimal effort.</p>\n\n<h2>Module Description</h2>\n\n<p>Apache is a widely-used web server, and this module provides a simplified way of creating configurations to manage your infrastructure. This includes the ability to configure and manage a range of different virtual host setups, as well as a streamlined way to install and configure Apache modules.</p>\n\n<h2>Setup</h2>\n\n<p><strong>What Apache affects:</strong></p>\n\n<ul>\n<li>configuration files and directories (created and written to)\n\n<ul>\n<li><strong>NOTE</strong>: Configurations that are <em>not</em> managed by Puppet will be purged.</li>\n</ul></li>\n<li>package/service/configuration files for Apache</li>\n<li>Apache modules</li>\n<li>virtual hosts</li>\n<li>listened-to ports</li>\n<li><code>/etc/make.conf</code> on FreeBSD</li>\n</ul>\n\n<h3>Beginning with Apache</h3>\n\n<p>To install Apache with the default parameters</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache&#39;: }\n</code></pre>\n\n<p>The defaults are determined by your operating system (e.g. Debian systems have one set of defaults, RedHat systems have another). These defaults will work well in a testing environment, but are not suggested for production. To establish customized parameters</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache&#39;:\n default_mods =&gt; false,\n default_confd_files =&gt; false,\n }\n</code></pre>\n\n<h3>Configure a virtual host</h3>\n\n<p>Declaring the <code>apache</code> class will create a default virtual host by setting up a vhost on port 80, listening on all interfaces and serving <code>$apache::docroot</code>.</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache&#39;: }\n</code></pre>\n\n<p>To configure a very basic, name-based virtual host</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;first.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/first&#39;,\n }\n</code></pre>\n\n<p><em>Note:</em> The default priority is 15. If nothing matches this priority, the alphabetically first name-based vhost will be used. This is also true if you pass a higher priority and no names match anything else.</p>\n\n<p>A slightly more complicated example, which moves the docroot owner/group</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;second.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/second&#39;,\n docroot_owner =&gt; &#39;third&#39;,\n docroot_group =&gt; &#39;third&#39;,\n }\n</code></pre>\n\n<p>To set up a virtual host with SSL and default SSL certificates</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;ssl.example.com&#39;:\n port =&gt; &#39;443&#39;,\n docroot =&gt; &#39;/var/www/ssl&#39;,\n ssl =&gt; true,\n }\n</code></pre>\n\n<p>To set up a virtual host with SSL and specific SSL certificates</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;fourth.example.com&#39;:\n port =&gt; &#39;443&#39;,\n docroot =&gt; &#39;/var/www/fourth&#39;,\n ssl =&gt; true,\n ssl_cert =&gt; &#39;/etc/ssl/fourth.example.com.cert&#39;,\n ssl_key =&gt; &#39;/etc/ssl/fourth.example.com.key&#39;,\n }\n</code></pre>\n\n<p>To set up a virtual host with IP address different than &#39;*&#39;</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;subdomain.example.com&#39;:\n ip =&gt; &#39;127.0.0.1&#39;,\n port =&gt; &#39;80&#39;,\n docrout =&gt; &#39;/var/www/subdomain&#39;,\n }\n</code></pre>\n\n<p>To set up a virtual host with wildcard alias for subdomain mapped to same named directory\n<code>http://examle.com.loc =&gt; /var/www/example.com</code></p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;subdomain.loc&#39;:\n vhost_name =&gt; &#39;*&#39;,\n port =&gt; &#39;80&#39;,\n virtual_docroot&#39; =&gt; &#39;/var/www/%-2+&#39;,\n docroot =&gt; &#39;/var/www&#39;,\n serveraliases =&gt; [&#39;*.loc&#39;,],\n }\n</code></pre>\n\n<p>To set up a virtual host with suPHP</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;suphp.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/home/appuser/myphpapp&#39;,\n suphp_addhandler =&gt; &#39;x-httpd-php&#39;,\n suphp_engine =&gt; &#39;on&#39;,\n suphp_configpath =&gt; &#39;/etc/php5/apache2&#39;,\n directories =&gt; { path =&gt; &#39;/home/appuser/myphpapp&#39;,\n &#39;suphp&#39; =&gt; { user =&gt; &#39;myappuser&#39;, group =&gt; &#39;myappgroup&#39; },\n }\n }\n</code></pre>\n\n<p>To set up a virtual host with WSGI</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;wsgi.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/pythonapp&#39;,\n wsgi_daemon_process =&gt; &#39;wsgi&#39;,\n wsgi_daemon_process_options =&gt;\n { processes =&gt; &#39;2&#39;, threads =&gt; &#39;15&#39;, display-name =&gt; &#39;%{GROUP}&#39; },\n wsgi_process_group =&gt; &#39;wsgi&#39;,\n wsgi_script_aliases =&gt; { &#39;/&#39; =&gt; &#39;/var/www/demo.wsgi&#39; },\n }\n</code></pre>\n\n<p>Starting 2.2.16, httpd supports <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_dir.html#fallbackresource\">FallbackResource</a> which is a simple replace for common RewriteRules:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;wordpress.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/wordpress&#39;,\n fallbackresource =&gt; &#39;/index.php&#39;,\n }\n</code></pre>\n\n<p>Please note that the <code>disabled</code> argument to FallbackResource is only supported since 2.2.24.</p>\n\n<p>To see a list of all virtual host parameters, <a href=\"#defined-type-apachevhost\">please go here</a>. To see an extensive list of virtual host examples <a href=\"#virtual-host-examples\">please look here</a>.</p>\n\n<h2>Usage</h2>\n\n<h3>Classes and Defined Types</h3>\n\n<p>This module modifies Apache configuration files and directories and will purge any configuration not managed by Puppet. Configuration of Apache should be managed by Puppet, as non-puppet configuration files can cause unexpected failures.</p>\n\n<p>It is possible to temporarily disable full Puppet management by setting the <code>purge_configs</code> parameter within the base <code>apache</code> class to &#39;false&#39;. This option should only be used as a temporary means of saving and relocating customized configurations.</p>\n\n<h4>Class: <code>apache</code></h4>\n\n<p>The Apache module&#39;s primary class, <code>apache</code>, guides the basic setup of Apache on your system.</p>\n\n<p>You may establish a default vhost in this class, the <code>vhost</code> class, or both. You may add additional vhost configurations for specific virtual hosts using a declaration of the <code>vhost</code> type.</p>\n\n<p><strong>Parameters within <code>apache</code>:</strong></p>\n\n<h5><code>default_mods</code></h5>\n\n<p>Sets up Apache with default settings based on your OS. Defaults to &#39;true&#39;, set to &#39;false&#39; for customized configuration.</p>\n\n<h5><code>default_vhost</code></h5>\n\n<p>Sets up a default virtual host. Defaults to &#39;true&#39;, set to &#39;false&#39; to set up <a href=\"#configure-a-virtual-host\">customized virtual hosts</a>.</p>\n\n<h5><code>default_confd_files</code></h5>\n\n<p>Generates default set of include-able apache configuration files under <code>${apache::confd_dir}</code> directory. These configuration files correspond to what is usually installed with apache package on given platform.</p>\n\n<h5><code>default_ssl_vhost</code></h5>\n\n<p>Sets up a default SSL virtual host. Defaults to &#39;false&#39;.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;default-ssl&#39;:\n port =&gt; 443,\n ssl =&gt; true,\n docroot =&gt; $docroot,\n scriptalias =&gt; $scriptalias,\n serveradmin =&gt; $serveradmin,\n access_log_file =&gt; &quot;ssl_${access_log_file}&quot;,\n }\n</code></pre>\n\n<p>SSL vhosts only respond to HTTPS queries.</p>\n\n<h5><code>default_ssl_cert</code></h5>\n\n<p>The default SSL certification, which is automatically set based on your operating system (<code>/etc/pki/tls/certs/localhost.crt</code> for RedHat, <code>/etc/ssl/certs/ssl-cert-snakeoil.pem</code> for Debian, <code>/usr/local/etc/apache22/server.crt</code> for FreeBSD). This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>default_ssl_key</code></h5>\n\n<p>The default SSL key, which is automatically set based on your operating system (<code>/etc/pki/tls/private/localhost.key</code> for RedHat, <code>/etc/ssl/private/ssl-cert-snakeoil.key</code> for Debian, <code>/usr/local/etc/apache22/server.key</code> for FreeBSD). This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>default_ssl_chain</code></h5>\n\n<p>The default SSL chain, which is automatically set to &#39;undef&#39;. This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>default_ssl_ca</code></h5>\n\n<p>The default certificate authority, which is automatically set to &#39;undef&#39;. This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>default_ssl_crl_path</code></h5>\n\n<p>The default certificate revocation list path, which is automatically set to &#39;undef&#39;. This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>default_ssl_crl</code></h5>\n\n<p>The default certificate revocation list to use, which is automatically set to &#39;undef&#39;. This default will work out of the box but must be updated with your specific certificate information before being used in production.</p>\n\n<h5><code>service_name</code></h5>\n\n<p>Name of apache service to run. Defaults to: <code>&#39;httpd&#39;</code> on RedHat, <code>&#39;apache2&#39;</code> on Debian, and <code>&#39;apache22&#39;</code> on FreeBSD.</p>\n\n<h5><code>service_enable</code></h5>\n\n<p>Determines whether the &#39;httpd&#39; service is enabled when the machine is booted. Defaults to &#39;true&#39;.</p>\n\n<h5><code>service_ensure</code></h5>\n\n<p>Determines whether the service should be running. Can be set to &#39;undef&#39; which is useful when you want to let the service be managed by some other application like pacemaker. Defaults to &#39;running&#39;.</p>\n\n<h5><code>purge_configs</code></h5>\n\n<p>Removes all other apache configs and vhosts, which is automatically set to true. Setting this to false is a stopgap measure to allow the apache module to coexist with existing or otherwise managed configuration. It is recommended that you move your configuration entirely to resources within this module.</p>\n\n<h5><code>serveradmin</code></h5>\n\n<p>Sets the server administrator. Defaults to &#39;root@localhost&#39;.</p>\n\n<h5><code>servername</code></h5>\n\n<p>Sets the servername. Defaults to fqdn provided by facter.</p>\n\n<h5><code>server_root</code></h5>\n\n<p>A value to be set as <code>ServerRoot</code> in main configuration file (<code>httpd.conf</code>). Defaults to <code>/etc/httpd</code> on RedHat, <code>/etc/apache2</code> on Debian and <code>/usr/local</code> on FreeBSD.</p>\n\n<h5><code>sendfile</code></h5>\n\n<p>Makes Apache use the Linux kernel &#39;sendfile&#39; to serve static files. Defaults to &#39;On&#39;.</p>\n\n<h5><code>server_root</code></h5>\n\n<p>A value to be set as <code>ServerRoot</code> in main configuration file (<code>httpd.conf</code>). Defaults to <code>/etc/httpd</code> on RedHat and <code>/etc/apache2</code> on Debian.</p>\n\n<h5><code>error_documents</code></h5>\n\n<p>Enables custom error documents. Defaults to &#39;false&#39;.</p>\n\n<h5><code>httpd_dir</code></h5>\n\n<p>Changes the base location of the configuration directories used for the service. This is useful for specially repackaged HTTPD builds but may have unintended consequences when used in combination with the default distribution packages. Default is based on your OS.</p>\n\n<h5><code>confd_dir</code></h5>\n\n<p>Changes the location of the configuration directory your custom configuration files are placed in. Default is based on your OS.</p>\n\n<h5><code>vhost_dir</code></h5>\n\n<p>Changes the location of the configuration directory your virtual host configuration files are placed in. Default is based on your OS.</p>\n\n<h5><code>mod_dir</code></h5>\n\n<p>Changes the location of the configuration directory your Apache modules configuration files are placed in. Default is based on your OS.</p>\n\n<h5><code>mpm_module</code></h5>\n\n<p>Configures which mpm module is loaded and configured for the httpd process by the <code>apache::mod::event</code>, <code>apache::mod::itk</code>, <code>apache::mod::peruser</code>, <code>apache::mod::prefork</code> and <code>apache::mod::worker</code> classes. Must be set to <code>false</code> to explicitly declare <code>apache::mod::event</code>, <code>apache::mod::itk</code>, <code>apache::mod::peruser</code>, <code>apache::mod::prefork</code> or <code>apache::mod::worker</code> classes with parameters. All possible values are <code>event</code>, <code>itk</code>, <code>peruser</code>, <code>prefork</code>, <code>worker</code> (valid values depend on agent&#39;s OS), or the boolean <code>false</code>. Defaults to <code>prefork</code> on RedHat and FreeBSD and <code>worker</code> on Debian. Note: on FreeBSD switching between different mpm modules is quite difficult (but possible). Before changing <code>$mpm_module</code> one has to deinstall all packages that depend on currently installed <code>apache</code>.</p>\n\n<h5><code>conf_template</code></h5>\n\n<p>Setting this allows you to override the template used for the main apache configuration file. This is a potentially risky thing to do as this module has been built around the concept of a minimal configuration file with most of the configuration coming in the form of conf.d/ entries. Defaults to &#39;apache/httpd.conf.erb&#39;.</p>\n\n<h5><code>keepalive</code></h5>\n\n<p>Setting this allows you to enable persistent connections.</p>\n\n<h5><code>keepalive_timeout</code></h5>\n\n<p>Amount of time the server will wait for subsequent requests on a persistent connection. Defaults to &#39;15&#39;.</p>\n\n<h5><code>logroot</code></h5>\n\n<p>Changes the location of the directory Apache log files are placed in. Defaut is based on your OS.</p>\n\n<h5><code>log_level</code></h5>\n\n<p>Changes the verbosity level of the error log. Defaults to &#39;warn&#39;. Valid values are <code>emerg</code>, <code>alert</code>, <code>crit</code>, <code>error</code>, <code>warn</code>, <code>notice</code>, <code>info</code> or <code>debug</code>.</p>\n\n<h5><code>ports_file</code></h5>\n\n<p>Changes the name of the file containing Apache ports configuration. Default is <code>${conf_dir}/ports.conf</code>.</p>\n\n<h5><code>server_tokens</code></h5>\n\n<p>Controls how much information Apache sends to the browser about itself and the operating system. See Apache documentation for &#39;ServerTokens&#39;. Defaults to &#39;OS&#39;.</p>\n\n<h5><code>server_signature</code></h5>\n\n<p>Allows the configuration of a trailing footer line under server-generated documents. See Apache documentation for &#39;ServerSignature&#39;. Defaults to &#39;On&#39;.</p>\n\n<h5><code>trace_enable</code></h5>\n\n<p>Controls, how TRACE requests per RFC 2616 are handled. See Apache documentation for &#39;TraceEnable&#39;. Defaults to &#39;On&#39;.</p>\n\n<h5><code>manage_user</code></h5>\n\n<p>Setting this to false will avoid the user resource to be created by this module. This is useful when you already have a user created in another puppet module and that you want to used it to run apache. Without this, it would result in a duplicate resource error.</p>\n\n<h5><code>manage_group</code></h5>\n\n<p>Setting this to false will avoid the group resource to be created by this module. This is useful when you already have a group created in another puppet module and that you want to used it for apache. Without this, it would result in a duplicate resource error.</p>\n\n<h5><code>package_ensure</code></h5>\n\n<p>Allow control over the package ensure statement. This is useful if you want to make sure apache is always at the latest version or whether it is only installed.</p>\n\n<h4>Class: <code>apache::default_mods</code></h4>\n\n<p>Installs default Apache modules based on what OS you are running</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache::default_mods&#39;: }\n</code></pre>\n\n<h4>Defined Type: <code>apache::mod</code></h4>\n\n<p>Used to enable arbitrary Apache httpd modules for which there is no specific <code>apache::mod::[name]</code> class. The <code>apache::mod</code> defined type will also install the required packages to enable the module, if any.</p>\n\n<pre lang=\"puppet\"><code> apache::mod { &#39;rewrite&#39;: }\n apache::mod { &#39;ldap&#39;: }\n</code></pre>\n\n<h4>Classes: <code>apache::mod::[name]</code></h4>\n\n<p>There are many <code>apache::mod::[name]</code> classes within this module that can be declared using <code>include</code>:</p>\n\n<ul>\n<li><code>alias</code></li>\n<li><code>auth_basic</code></li>\n<li><code>auth_kerb</code></li>\n<li><code>autoindex</code></li>\n<li><code>cache</code></li>\n<li><code>cgi</code></li>\n<li><code>cgid</code></li>\n<li><code>dav</code></li>\n<li><code>dav_fs</code></li>\n<li><code>dav_svn</code></li>\n<li><code>deflate</code></li>\n<li><code>dev</code></li>\n<li><code>dir</code>*</li>\n<li><code>disk_cache</code></li>\n<li><code>event</code></li>\n<li><code>fastcgi</code></li>\n<li><code>fcgid</code></li>\n<li><code>headers</code></li>\n<li><code>info</code></li>\n<li><code>itk</code></li>\n<li><code>ldap</code></li>\n<li><code>mime</code></li>\n<li><code>mime_magic</code>*</li>\n<li><code>mpm_event</code></li>\n<li><code>negotiation</code></li>\n<li><code>nss</code>*</li>\n<li><code>passenger</code>*</li>\n<li><code>perl</code></li>\n<li><code>peruser</code></li>\n<li><code>php</code> (requires <a href=\"#mpm_module\"><code>mpm_module</code></a> set to <code>prefork</code>)</li>\n<li><code>prefork</code>*</li>\n<li><code>proxy</code>*</li>\n<li><code>proxy_ajp</code></li>\n<li><code>proxy_html</code></li>\n<li><code>proxy_http</code></li>\n<li><code>python</code></li>\n<li><code>reqtimeout</code></li>\n<li><code>rewrite</code></li>\n<li><code>rpaf</code>*</li>\n<li><code>setenvif</code></li>\n<li><code>ssl</code>* (see <a href=\"#class-apachemodssl\">apache::mod::ssl</a> below)</li>\n<li><code>status</code>*</li>\n<li><code>suphp</code></li>\n<li><code>userdir</code>*</li>\n<li><code>vhost_alias</code></li>\n<li><code>worker</code>*</li>\n<li><code>wsgi</code> (see <a href=\"#class-apachemodwsgi\">apache::mod::wsgi</a> below)</li>\n<li><code>xsendfile</code></li>\n</ul>\n\n<p>Modules noted with a * indicate that the module has settings and, thus, a template that includes parameters. These parameters control the module&#39;s configuration. Most of the time, these parameters will not require any configuration or attention.</p>\n\n<p>The modules mentioned above, and other Apache modules that have templates, will cause template files to be dropped along with the mod install, and the module will not work without the template. Any mod without a template will install package but drop no files.</p>\n\n<h4>Class: <code>apache::mod::ssl</code></h4>\n\n<p>Installs Apache SSL capabilities and utilizes <code>ssl.conf.erb</code> template. These are the defaults:</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache::mod::ssl&#39;:\n ssl_compression =&gt; false,\n ssl_options =&gt; [ &#39;StdEnvVars&#39; ],\n }\n</code></pre>\n\n<p>To <em>use</em> SSL with a virtual host, you must either set the<code>default_ssl_vhost</code> parameter in <code>apache</code> to &#39;true&#39; or set the <code>ssl</code> parameter in <code>apache::vhost</code> to &#39;true&#39;.</p>\n\n<h4>Class: <code>apache::mod::wsgi</code></h4>\n\n<pre lang=\"puppet\"><code> class { &#39;apache::mod::wsgi&#39;:\n wsgi_socket_prefix =&gt; &quot;\\${APACHE_RUN_DIR}WSGI&quot;,\n wsgi_python_home =&gt; &#39;/path/to/virtenv&#39;,\n wsgi_python_path =&gt; &#39;/path/to/virtenv/site-packages&#39;,\n }\n</code></pre>\n\n<h4>Defined Type: <code>apache::vhost</code></h4>\n\n<p>The Apache module allows a lot of flexibility in the set up and configuration of virtual hosts. This flexibility is due, in part, to <code>vhost</code>&#39;s setup as a defined resource type, which allows it to be evaluated multiple times with different parameters.</p>\n\n<p>The <code>vhost</code> defined type allows you to have specialized configurations for virtual hosts that have requirements outside of the defaults. You can set up a default vhost within the base <code>apache</code> class as well as set a customized vhost setup as default. Your customized vhost (priority 10) will be privileged over the base class vhost (15).</p>\n\n<p>If you have a series of specific configurations and do not want a base <code>apache</code> class default vhost, make sure to set the base class default host to &#39;false&#39;.</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache&#39;:\n default_vhost =&gt; false,\n }\n</code></pre>\n\n<p><strong>Parameters within <code>apache::vhost</code>:</strong></p>\n\n<p>The default values for each parameter will vary based on operating system and type of virtual host.</p>\n\n<h5><code>access_log</code></h5>\n\n<p>Specifies whether <code>*_access.log</code> directives should be configured. Valid values are &#39;true&#39; and &#39;false&#39;. Defaults to &#39;true&#39;.</p>\n\n<h5><code>access_log_file</code></h5>\n\n<p>Points to the <code>*_access.log</code> file. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>access_log_pipe</code></h5>\n\n<p>Specifies a pipe to send access log messages to. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>access_log_syslog</code></h5>\n\n<p>Sends all access log messages to syslog. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>access_log_format</code></h5>\n\n<p>Specifies either a LogFormat nickname or custom format string for access log. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>add_listen</code></h5>\n\n<p>Determines whether the vhost creates a listen statement. The default value is &#39;true&#39;.</p>\n\n<p>Setting <code>add_listen</code> to &#39;false&#39; stops the vhost from creating a listen statement, and this is important when you combine vhosts that are not passed an <code>ip</code> parameter with vhosts that <em>are</em> passed the <code>ip</code> parameter.</p>\n\n<h5><code>aliases</code></h5>\n\n<p>Passes a list of hashes to the vhost to create <code>Alias</code> or <code>AliasMatch</code> statements as per the <a href=\"http://httpd.apache.org/docs/current/mod/mod_alias.html\"><code>mod_alias</code> documentation</a>. Each hash is expected to be of the form:</p>\n\n<pre><code>aliases =&gt; [\n { aliasmatch =&gt; &#39;^/image/(.*)\\.jpg$&#39;, path =&gt; &#39;/files/jpg.images/$1.jpg&#39; }\n { alias =&gt; &#39;/image&#39;, path =&gt; &#39;/ftp/pub/image&#39; },\n],\n</code></pre>\n\n<p>For <code>Alias</code> and <code>AliasMatch</code> to work, each will need a corresponding <code>&lt;Directory /path/to/directory&gt;</code> or <code>&lt;Location /path/to/directory&gt;</code> block. The <code>Alias</code> and <code>AliasMatch</code> directives are created in the order specified in the <code>aliases</code> paramter. As described in the <a href=\"http://httpd.apache.org/docs/current/mod/mod_alias.html\"><code>mod_alias</code> documentation</a> more specific <code>Alias</code> or <code>AliasMatch</code> directives should come before the more general ones to avoid shadowing.</p>\n\n<p><strong>Note:</strong> If <code>apache::mod::passenger</code> is loaded and <code>PassengerHighPerformance true</code> is set, then <code>Alias</code> may have issues honouring the <code>PassengerEnabled off</code> statement. See <a href=\"http://www.conandalton.net/2010/06/passengerenabled-off-not-working.html\">this article</a> for details.</p>\n\n<h5><code>block</code></h5>\n\n<p>Specifies the list of things Apache will block access to. The default is an empty set, &#39;[]&#39;. Currently, the only option is &#39;scm&#39;, which blocks web access to .svn, .git and .bzr directories. To add to this, please see the <a href=\"#development\">Development</a> section.</p>\n\n<h5><code>custom_fragment</code></h5>\n\n<p>Pass a string of custom configuration directives to be placed at the end of the vhost configuration.</p>\n\n<h5><code>default_vhost</code></h5>\n\n<p>Sets a given <code>apache::vhost</code> as the default to serve requests that do not match any other <code>apache::vhost</code> definitions. The default value is &#39;false&#39;.</p>\n\n<h5><code>directories</code></h5>\n\n<p>Passes a list of hashes to the vhost to create <code>&lt;Directory /path/to/directory&gt;...&lt;/Directory&gt;</code> directive blocks as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/core.html#directory\">Apache core documentation</a>. The <code>path</code> key is required in these hashes. An optional <code>provider</code> defaults to <code>directory</code>. Usage will typically look like:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [\n { path =&gt; &#39;/path/to/directory&#39;, &lt;directive&gt; =&gt; &lt;value&gt; },\n { path =&gt; &#39;/path/to/another/directory&#39;, &lt;directive&gt; =&gt; &lt;value&gt; },\n ],\n }\n</code></pre>\n\n<p><em>Note:</em> At least one directory should match <code>docroot</code> parameter, once you start declaring directories <code>apache::vhost</code> assumes that all required <code>&lt;Directory&gt;</code> blocks will be declared.</p>\n\n<p><em>Note:</em> If not defined a single default <code>&lt;Directory&gt;</code> block will be created that matches the <code>docroot</code> parameter.</p>\n\n<p><code>provider</code> can be set to any of <code>directory</code>, <code>files</code>, or <code>location</code>. If the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#files\">pathspec starts with a <code>~</code></a>, httpd will interpret this as the equivalent of <code>DirectoryMatch</code>, <code>FilesMatch</code>, or <code>LocationMatch</code>, respectively.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;files.example.net&#39;:\n docroot =&gt; &#39;/var/www/files&#39;,\n directories =&gt; [\n { path =&gt; &#39;~ (\\.swp|\\.bak|~)$&#39;, &#39;provider&#39; =&gt; &#39;files&#39;, &#39;deny&#39; =&gt; &#39;from all&#39; },\n ],\n }\n</code></pre>\n\n<p>The directives will be embedded within the <code>Directory</code> (<code>Files</code>, or <code>Location</code>) directive block, missing directives should be undefined and not be added, resulting in their default vaules in Apache. Currently this is the list of supported directives:</p>\n\n<h6><code>addhandlers</code></h6>\n\n<p>Sets <code>AddHandler</code> directives as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_mime.html#addhandler\">Apache Core documentation</a>. Accepts a list of hashes of the form <code>{ handler =&gt; &#39;handler-name&#39;, extensions =&gt; [&#39;extension&#39;]}</code>. Note that <code>extensions</code> is a list of extenstions being handled by the handler.\nAn example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;,\n addhandlers =&gt; [ { handler =&gt; &#39;cgi-script&#39;, extensions =&gt; [&#39;.cgi&#39;]} ],\n } ],\n }\n</code></pre>\n\n<h6><code>allow</code></h6>\n\n<p>Sets an <code>Allow</code> directive as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#allow\">Apache Core documentation</a>. An example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, allow =&gt; &#39;from example.org&#39; } ],\n }\n</code></pre>\n\n<h6><code>allow_override</code></h6>\n\n<p>Sets the usage of <code>.htaccess</code> files as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/core.html#allowoverride\">Apache core documentation</a>. Should accept in the form of a list or a string. An example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, allow_override =&gt; [&#39;AuthConfig&#39;, &#39;Indexes&#39;] } ],\n }\n</code></pre>\n\n<h6><code>deny</code></h6>\n\n<p>Sets an <code>Deny</code> directive as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#deny\">Apache Core documentation</a>. An example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, deny =&gt; &#39;from example.org&#39; } ],\n }\n</code></pre>\n\n<h6><code>error_documents</code></h6>\n\n<p>A list of hashes which can be used to override the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#errordocument\">ErrorDocument</a> settings for this directory. Example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n directories =&gt; [ { path =&gt; &#39;/srv/www&#39;\n error_documents =&gt; [\n { &#39;error_code&#39; =&gt; &#39;503&#39;, &#39;document&#39; =&gt; &#39;/service-unavail&#39; },\n ],\n }]\n }\n</code></pre>\n\n<h6><code>headers</code></h6>\n\n<p>Adds lines for <code>Header</code> directives as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_headers.html#header\">Apache Header documentation</a>. An example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; {\n path =&gt; &#39;/path/to/directory&#39;,\n headers =&gt; &#39;Set X-Robots-Tag &quot;noindex, noarchive, nosnippet&quot;&#39;,\n },\n }\n</code></pre>\n\n<h6><code>options</code></h6>\n\n<p>Lists the options for the given <code>&lt;Directory&gt;</code> block</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, options =&gt; [&#39;Indexes&#39;,&#39;FollowSymLinks&#39;,&#39;MultiViews&#39;] }],\n }\n</code></pre>\n\n<h6><code>index_options</code></h6>\n\n<p>Styles the list</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, options =&gt; [&#39;Indexes&#39;,&#39;FollowSymLinks&#39;,&#39;MultiViews&#39;], index_options =&gt; [&#39;IgnoreCase&#39;, &#39;FancyIndexing&#39;, &#39;FoldersFirst&#39;, &#39;NameWidth=*&#39;, &#39;DescriptionWidth=*&#39;, &#39;SuppressHTMLPreamble&#39;] }],\n }\n</code></pre>\n\n<h6><code>index_order_default</code></h6>\n\n<p>Sets the order of the list </p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, order =&gt; &#39;Allow,Deny&#39;, index_order_default =&gt; [&#39;Descending&#39;, &#39;Date&#39;]}, ],\n }\n</code></pre>\n\n<h6><code>order</code></h6>\n\n<p>Sets the order of processing <code>Allow</code> and <code>Deny</code> statements as per <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#order\">Apache core documentation</a>. An example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, order =&gt; &#39;Allow,Deny&#39; } ],\n }\n</code></pre>\n\n<h6><code>auth_type</code></h6>\n\n<p>Sets the value for <code>AuthType</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#authtype\">Apache AuthType\ndocumentation</a>.</p>\n\n<h6><code>auth_name</code></h6>\n\n<p>Sets the value for <code>AuthName</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#authname\">Apache AuthName\ndocumentation</a>.</p>\n\n<h6><code>auth_digest_algorithm</code></h6>\n\n<p>Sets the value for <code>AuthDigestAlgorithm</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestalgorithm\">Apache\nAuthDigestAlgorithm\ndocumentation</a></p>\n\n<h6><code>auth_digest_domain</code></h6>\n\n<p>Sets the value for <code>AuthDigestDomain</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestdomain\">Apache AuthDigestDomain\ndocumentation</a>.</p>\n\n<h6><code>auth_digest_nonce_lifetime</code></h6>\n\n<p>Sets the value for <code>AuthDigestNonceLifetime</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestnoncelifetime\">Apache\nAuthDigestNonceLifetime\ndocumentation</a></p>\n\n<h6><code>auth_digest_provider</code></h6>\n\n<p>Sets the value for <code>AuthDigestProvider</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestprovider\">Apache AuthDigestProvider\ndocumentation</a>.</p>\n\n<h6><code>auth_digest_qop</code></h6>\n\n<p>Sets the value for <code>AuthDigestQop</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestqop\">Apache AuthDigestQop\ndocumentation</a>.</p>\n\n<h6><code>auth_digest_shmem_size</code></h6>\n\n<p>Sets the value for <code>AuthAuthDigestShmemSize</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#authdigestshmemsize\">Apache AuthDigestShmemSize\ndocumentation</a>.</p>\n\n<h6><code>auth_basic_authoritative</code></h6>\n\n<p>Sets the value for <code>AuthBasicAuthoritative</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_basic.html#authbasicauthoritative\">Apache\nAuthBasicAuthoritative\ndocumentation</a>.</p>\n\n<h6><code>auth_basic_fake</code></h6>\n\n<p>Sets the value for <code>AuthBasicFake</code> as per the <a href=\"https://httpd.apache.org/docs/trunk/mod/mod_auth_basic.html#authbasicfake\">Apache AuthBasicFake\ndocumentation</a>.</p>\n\n<h6><code>auth_basic_provider</code></h6>\n\n<p>Sets the value for <code>AuthBasicProvider</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_auth_basic.html#authbasicprovider\">Apache AuthBasicProvider\ndocumentation</a>.</p>\n\n<h6><code>auth_user_file</code></h6>\n\n<p>Sets the value for <code>AuthUserFile</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_authn_file.html#authuserfile\">Apache AuthUserFile\ndocumentation</a>.</p>\n\n<h6><code>auth_require</code></h6>\n\n<p>Sets the value for <code>AuthName</code> as per the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#require\">Apache Require\ndocumentation</a></p>\n\n<h6><code>passenger_enabled</code></h6>\n\n<p>Sets the value for the <code>PassengerEnabled</code> directory to <code>on</code> or <code>off</code> as per the <a href=\"http://www.modrails.com/documentation/Users%20guide%20Apache.html#PassengerEnabled\">Passenger documentation</a>.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [ { path =&gt; &#39;/path/to/directory&#39;, passenger_enabled =&gt; &#39;off&#39; } ],\n }\n</code></pre>\n\n<p><strong>Note:</strong> This directive requires <code>apache::mod::passenger</code> to be active, Apache may not start with an unrecognised directive without it.</p>\n\n<p><strong>Note:</strong> Be aware that there is an <a href=\"http://www.conandalton.net/2010/06/passengerenabled-off-not-working.html\">issue</a> using the <code>PassengerEnabled</code> directive with the <code>PassengerHighPerformance</code> directive.</p>\n\n<h6><code>ssl_options</code></h6>\n\n<p>String or list of <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_ssl.html#ssloptions\"><code>SSLOptions</code></a> for the given <code>&lt;Directory&gt;</code> block. This overrides, or refines the <a href=\"https://httpd.apache.org/docs/2.2/mod/mod_ssl.html#ssloptions\"><code>SSLOptions</code></a> of the parent block (either vhost, or server).</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;secure.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [\n { path =&gt; &#39;/path/to/directory&#39;, ssl_options =&gt; &#39;+ExportCertData&#39; }\n { path =&gt; &#39;/path/to/different/dir&#39;, ssl_options =&gt; [ &#39;-StdEnvVars&#39;, &#39;+ExportCertData&#39;] },\n ],\n }\n</code></pre>\n\n<h6><code>suphp</code></h6>\n\n<p>An array containing two values: User and group for the <a href=\"http://www.suphp.org/DocumentationView.html?file=apache/CONFIG\">suPHP_UserGroup</a> setting.\nThis directive must be used with <code>suphp_engine =&gt; on</code> in the vhost declaration. This directive only works in <code>&lt;Directory&gt;</code> or <code>&lt;Location&gt;</code>.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;secure.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n directories =&gt; [\n { path =&gt; &#39;/path/to/directory&#39;, suphp =&gt; { user =&gt; &#39;myappuser&#39;, group =&gt; &#39;myappgroup&#39; }\n ],\n }\n</code></pre>\n\n<h6><code>custom_fragment</code></h6>\n\n<p>Pass a string of custom configuration directives to be placed at the end of the\ndirectory configuration.</p>\n\n<h5><code>directoryindex</code></h5>\n\n<p>Set a DirectoryIndex directive, to set the list of resources to look for, when the client requests an index of the directory by specifying a / at the end of the directory name..</p>\n\n<h5><code>docroot</code></h5>\n\n<p>Provides the DocumentRoot directive, identifying the directory Apache serves files from.</p>\n\n<h5><code>docroot_group</code></h5>\n\n<p>Sets group access to the docroot directory. Defaults to &#39;root&#39;.</p>\n\n<h5><code>docroot_owner</code></h5>\n\n<p>Sets individual user access to the docroot directory. Defaults to &#39;root&#39;.</p>\n\n<h5><code>error_log</code></h5>\n\n<p>Specifies whether <code>*_error.log</code> directives should be configured. Defaults to &#39;true&#39;.</p>\n\n<h5><code>error_log_file</code></h5>\n\n<p>Points to the <code>*_error.log</code> file. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>error_log_pipe</code></h5>\n\n<p>Specifies a pipe to send error log messages to. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>error_log_syslog</code></h5>\n\n<p>Sends all error log messages to syslog. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>error_documents</code></h5>\n\n<p>A list of hashes which can be used to override the <a href=\"https://httpd.apache.org/docs/2.2/mod/core.html#errordocument\">ErrorDocument</a> settings for this vhost. Defaults to <code>[]</code>. Example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n error_documents =&gt; [\n { &#39;error_code&#39; =&gt; &#39;503&#39;, &#39;document&#39; =&gt; &#39;/service-unavail&#39; },\n { &#39;error_code&#39; =&gt; &#39;407&#39;, &#39;document&#39; =&gt; &#39;https://example.com/proxy/login&#39; },\n ],\n }\n</code></pre>\n\n<h5><code>ensure</code></h5>\n\n<p>Specifies if the vhost file is present or absent.</p>\n\n<h5><code>fastcgi_server</code></h5>\n\n<p>Specifies the filename as an external FastCGI application. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>fastcgi_socket</code></h5>\n\n<p>Filename used to communicate with the web server. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>fastcgi_dir</code></h5>\n\n<p>Directory to enable for FastCGI. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>additional_includes</code></h5>\n\n<p>Specifies paths to additional static vhost-specific Apache configuration files.\nThis option is useful when you need to implement a unique and/or custom\nconfiguration not supported by this module.</p>\n\n<h5><code>ip</code></h5>\n\n<p>The IP address the vhost listens on. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>ip_based</code></h5>\n\n<p>Enables an IP-based vhost. This parameter inhibits the creation of a NameVirtualHost directive, since those are used to funnel requests to name-based vhosts. Defaults to &#39;false&#39;.</p>\n\n<h5><code>logroot</code></h5>\n\n<p>Specifies the location of the virtual host&#39;s logfiles. Defaults to <code>/var/log/&lt;apache log location&gt;/</code>.</p>\n\n<h5><code>log_level</code></h5>\n\n<p>Specifies the verbosity level of the error log. Defaults to <code>warn</code> for the global server configuration and can be overridden on a per-vhost basis using this parameter. Valid value for <code>log_level</code> is one of <code>emerg</code>, <code>alert</code>, <code>crit</code>, <code>error</code>, <code>warn</code>, <code>notice</code>, <code>info</code> or <code>debug</code>.</p>\n\n<h5><code>no_proxy_uris</code></h5>\n\n<p>Specifies URLs you do not want to proxy. This parameter is meant to be used in combination with <code>proxy_dest</code>.</p>\n\n<h5><code>options</code></h5>\n\n<p>Lists the options for the given virtual host</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n options =&gt; [&#39;Indexes&#39;,&#39;FollowSymLinks&#39;,&#39;MultiViews&#39;],\n }\n</code></pre>\n\n<h5><code>override</code></h5>\n\n<p>Sets the overrides for the given virtual host. Accepts an array of AllowOverride arguments.</p>\n\n<h5><code>port</code></h5>\n\n<p>Sets the port the host is configured on.</p>\n\n<h5><code>priority</code></h5>\n\n<p>Sets the relative load-order for Apache httpd VirtualHost configuration files. Defaults to &#39;25&#39;.</p>\n\n<p>If nothing matches the priority, the first name-based vhost will be used. Likewise, passing a higher priority will cause the alphabetically first name-based vhost to be used if no other names match.</p>\n\n<p><em>Note</em>: You should not need to use this parameter. However, if you do use it, be aware that the <code>default_vhost</code> parameter for <code>apache::vhost</code> passes a priority of &#39;15&#39;.</p>\n\n<h5><code>proxy_dest</code></h5>\n\n<p>Specifies the destination address of a proxypass configuration. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>proxy_pass</code></h5>\n\n<p>Specifies an array of path =&gt; uri for a proxypass configuration. Defaults to &#39;undef&#39;.</p>\n\n<p>Example:</p>\n\n<pre lang=\"puppet\"><code>$proxy_pass = [\n { &#39;path&#39; =&gt; &#39;/a&#39;, &#39;url&#39; =&gt; &#39;http://backend-a/&#39; },\n { &#39;path&#39; =&gt; &#39;/b&#39;, &#39;url&#39; =&gt; &#39;http://backend-b/&#39; },\n { &#39;path&#39; =&gt; &#39;/c&#39;, &#39;url&#39; =&gt; &#39;http://backend-a/c&#39; }\n]\n\napache::vhost { &#39;site.name.fdqn&#39;:\n …\n proxy_pass =&gt; $proxy_pass,\n}\n</code></pre>\n\n<h5><code>rack_base_uris</code></h5>\n\n<p>Specifies the resource identifiers for a rack configuration. The file paths specified will be listed as rack application roots for passenger/rack in the <code>_rack.erb</code> template. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>redirect_dest</code></h5>\n\n<p>Specifies the address to redirect to. Defaults to &#39;undef&#39;.</p>\n\n<h5><code>redirect_source</code></h5>\n\n<p>Specifies the source items? that will redirect to the destination specified in <code>redirect_dest</code>. If more than one item for redirect is supplied, the source and destination must be the same length, and the items are order-dependent.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n redirect_source =&gt; [&#39;/images&#39;,&#39;/downloads&#39;],\n redirect_dest =&gt; [&#39;http://img.example.com/&#39;,&#39;http://downloads.example.com/&#39;],\n }\n</code></pre>\n\n<h5><code>redirect_status</code></h5>\n\n<p>Specifies the status to append to the redirect. Defaults to &#39;undef&#39;.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n redirect_status =&gt; [&#39;temp&#39;,&#39;permanent&#39;],\n }\n</code></pre>\n\n<h5><code>request_headers</code></h5>\n\n<p>Specifies additional request headers.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n request_headers =&gt; [\n &#39;append MirrorID &quot;mirror 12&quot;&#39;,\n &#39;unset MirrorID&#39;,\n ],\n }\n</code></pre>\n\n<h5><code>rewrite_base</code></h5>\n\n<p>Limits the <code>rewrite_rule</code> to the specified base URL. Defaults to &#39;undef&#39;.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n rewrite_rule =&gt; &#39;^index\\.html$ welcome.html&#39;,\n rewrite_base =&gt; &#39;/blog/&#39;,\n }\n</code></pre>\n\n<p>The above example would limit the index.html -&gt; welcome.html rewrite to only something inside of <a href=\"http://example.com/blog/\">http://example.com/blog/</a>.</p>\n\n<h5><code>rewrite_cond</code></h5>\n\n<p>Rewrites a URL via <code>rewrite_rule</code> based on the truth of specified conditions. For example</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n rewrite_cond =&gt; &#39;%{HTTP_USER_AGENT} ^MSIE&#39;,\n }\n</code></pre>\n\n<p>will rewrite URLs only if the visitor is using IE. Defaults to &#39;undef&#39;.</p>\n\n<p><em>Note</em>: At the moment, each vhost is limited to a single list of rewrite conditions. In the future, you will be able to specify multiple <code>rewrite_cond</code> and <code>rewrite_rules</code> per vhost, so that different conditions get different rewrites.</p>\n\n<h5><code>rewrite_rule</code></h5>\n\n<p>Creates URL rewrite rules. Defaults to &#39;undef&#39;. This parameter allows you to specify, for example, that anyone trying to access index.html will be served welcome.html.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;site.name.fdqn&#39;:\n …\n rewrite_rule =&gt; &#39;^index\\.html$ welcome.html&#39;,\n }\n</code></pre>\n\n<h5><code>scriptalias</code></h5>\n\n<p>Defines a directory of CGI scripts to be aliased to the path &#39;/cgi-bin&#39;</p>\n\n<h5><code>scriptaliases</code></h5>\n\n<p>Passes a list of hashes to the vhost to create <code>ScriptAlias</code> or <code>ScriptAliasMatch</code> statements as per the <a href=\"http://httpd.apache.org/docs/current/mod/mod_alias.html\"><code>mod_alias</code> documentation</a>. Each hash is expected to be of the form:</p>\n\n<pre lang=\"puppet\"><code> scriptaliases =&gt; [\n {\n alias =&gt; &#39;/myscript&#39;,\n path =&gt; &#39;/usr/share/myscript&#39;,\n },\n {\n aliasmatch =&gt; &#39;^/foo(.*)&#39;,\n path =&gt; &#39;/usr/share/fooscripts$1&#39;,\n },\n {\n aliasmatch =&gt; &#39;^/bar/(.*)&#39;,\n path =&gt; &#39;/usr/share/bar/wrapper.sh/$1&#39;,\n },\n {\n alias =&gt; &#39;/neatscript&#39;,\n path =&gt; &#39;/usr/share/neatscript&#39;,\n },\n ]\n</code></pre>\n\n<p>These directives are created in the order specified. As with <code>Alias</code> and <code>AliasMatch</code> directives the more specific aliases should come before the more general ones to avoid shadowing.</p>\n\n<h5><code>serveradmin</code></h5>\n\n<p>Specifies the email address Apache will display when it renders one of its error pages.</p>\n\n<h5><code>serveraliases</code></h5>\n\n<p>Sets the server aliases of the site.</p>\n\n<h5><code>servername</code></h5>\n\n<p>Sets the primary name of the virtual host.</p>\n\n<h5><code>setenv</code></h5>\n\n<p>Used by HTTPD to set environment variables for vhosts. Defaults to &#39;[]&#39;.</p>\n\n<h5><code>setenvif</code></h5>\n\n<p>Used by HTTPD to conditionally set environment variables for vhosts. Defaults to &#39;[]&#39;.</p>\n\n<h5><code>ssl</code></h5>\n\n<p>Enables SSL for the virtual host. SSL vhosts only respond to HTTPS queries. Valid values are &#39;true&#39; or &#39;false&#39;.</p>\n\n<h5><code>ssl_ca</code></h5>\n\n<p>Specifies the certificate authority.</p>\n\n<h5><code>ssl_cert</code></h5>\n\n<p>Specifies the SSL certification.</p>\n\n<h5><code>ssl_protocol</code></h5>\n\n<p>Specifies the SSL Protocol (SSLProtocol).</p>\n\n<h5><code>ssl_cipher</code></h5>\n\n<p>Specifies the SSLCipherSuite.</p>\n\n<h5><code>ssl_honorcipherorder</code></h5>\n\n<p>Sets SSLHonorCipherOrder directive, used to prefer the server&#39;s cipher preference order</p>\n\n<h5><code>ssl_certs_dir</code></h5>\n\n<p>Specifies the location of the SSL certification directory. Defaults to <code>/etc/ssl/certs</code> on Debian and <code>/etc/pki/tls/certs</code> on RedHat.</p>\n\n<h5><code>ssl_chain</code></h5>\n\n<p>Specifies the SSL chain.</p>\n\n<h5><code>ssl_crl</code></h5>\n\n<p>Specifies the certificate revocation list to use.</p>\n\n<h5><code>ssl_crl_path</code></h5>\n\n<p>Specifies the location of the certificate revocation list.</p>\n\n<h5><code>ssl_key</code></h5>\n\n<p>Specifies the SSL key.</p>\n\n<h5><code>ssl_verify_client</code></h5>\n\n<p>Sets <code>SSLVerifyClient</code> directives as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslverifyclient\">Apache Core documentation</a>. Defaults to undef.\nAn example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n …\n ssl_verify_client =&gt; &#39;optional&#39;,\n }\n</code></pre>\n\n<h5><code>ssl_verify_depth</code></h5>\n\n<p>Sets <code>SSLVerifyDepth</code> directives as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslverifydepth\">Apache Core documentation</a>. Defaults to undef.\nAn example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n …\n ssl_verify_depth =&gt; 1,\n }\n</code></pre>\n\n<h5><code>ssl_options</code></h5>\n\n<p>Sets <code>SSLOptions</code> directives as per the <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#ssloptions\">Apache Core documentation</a>. This is the global setting for the vhost and can be a string or an array. Defaults to undef. A single string example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n …\n ssl_options =&gt; &#39;+ExportCertData&#39;,\n }\n</code></pre>\n\n<p>An array of strings example:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n …\n ssl_options =&gt; [ &#39;+StrictRequire&#39;, &#39;+ExportCertData&#39; ],\n }\n</code></pre>\n\n<h5><code>ssl_proxyengine</code></h5>\n\n<p>Specifies whether to use <code>SSLProxyEngine</code> or not. Defaults to <code>false</code>.</p>\n\n<h5><code>vhost_name</code></h5>\n\n<p>This parameter is for use with name-based virtual hosting. Defaults to &#39;*&#39;.</p>\n\n<h5><code>itk</code></h5>\n\n<p>Hash containing infos to configure itk as per the <a href=\"http://mpm-itk.sesse.net/\">ITK documentation</a>.</p>\n\n<p>Keys could be:</p>\n\n<ul>\n<li>user + group</li>\n<li>assignuseridexpr</li>\n<li>assigngroupidexpr</li>\n<li>maxclientvhost</li>\n<li>nice</li>\n<li>limituidrange (Linux 3.5.0 or newer)</li>\n<li>limitgidrange (Linux 3.5.0 or newer)</li>\n</ul>\n\n<p>Usage will typically look like:</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sample.example.net&#39;:\n docroot =&gt; &#39;/path/to/directory&#39;,\n itk =&gt; {\n user =&gt; &#39;someuser&#39;,\n group =&gt; &#39;somegroup&#39;,\n },\n }\n</code></pre>\n\n<h3>Virtual Host Examples</h3>\n\n<p>The Apache module allows you to set up pretty much any configuration of virtual host you might desire. This section will address some common configurations. Please see the <a href=\"https://github.com/puppetlabs/puppetlabs-apache/tree/main/tests\">Tests section</a> for even more examples.</p>\n\n<p>Configure a vhost with a server administrator</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;third.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/third&#39;,\n serveradmin =&gt; &#39;admin@example.com&#39;,\n }\n</code></pre>\n\n<hr>\n\n<p>Set up a vhost with aliased servers</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sixth.example.com&#39;:\n serveraliases =&gt; [\n &#39;sixth.example.org&#39;,\n &#39;sixth.example.net&#39;,\n ],\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/fifth&#39;,\n }\n</code></pre>\n\n<hr>\n\n<p>Configure a vhost with a cgi-bin</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;eleventh.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/eleventh&#39;,\n scriptalias =&gt; &#39;/usr/lib/cgi-bin&#39;,\n }\n</code></pre>\n\n<hr>\n\n<p>Set up a vhost with a rack configuration</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;fifteenth.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/fifteenth&#39;,\n rack_base_uris =&gt; [&#39;/rackapp1&#39;, &#39;/rackapp2&#39;],\n }\n</code></pre>\n\n<hr>\n\n<p>Set up a mix of SSL and non-SSL vhosts at the same domain</p>\n\n<pre lang=\"puppet\"><code> #The non-ssl vhost\n apache::vhost { &#39;first.example.com non-ssl&#39;:\n servername =&gt; &#39;first.example.com&#39;,\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/first&#39;,\n }\n\n #The SSL vhost at the same domain\n apache::vhost { &#39;first.example.com ssl&#39;:\n servername =&gt; &#39;first.example.com&#39;,\n port =&gt; &#39;443&#39;,\n docroot =&gt; &#39;/var/www/first&#39;,\n ssl =&gt; true,\n }\n</code></pre>\n\n<hr>\n\n<p>Configure a vhost to redirect non-SSL connections to SSL</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;sixteenth.example.com non-ssl&#39;:\n servername =&gt; &#39;sixteenth.example.com&#39;,\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/sixteenth&#39;,\n redirect_status =&gt; &#39;permanent&#39;\n redirect_dest =&gt; &#39;https://sixteenth.example.com/&#39;\n }\n apache::vhost { &#39;sixteenth.example.com ssl&#39;:\n servername =&gt; &#39;sixteenth.example.com&#39;,\n port =&gt; &#39;443&#39;,\n docroot =&gt; &#39;/var/www/sixteenth&#39;,\n ssl =&gt; true,\n }\n</code></pre>\n\n<hr>\n\n<p>Set up IP-based vhosts on any listen port and have them respond to requests on specific IP addresses. In this example, we will set listening on ports 80 and 81. This is required because the example vhosts are not declared with a port parameter.</p>\n\n<pre lang=\"puppet\"><code> apache::listen { &#39;80&#39;: }\n apache::listen { &#39;81&#39;: }\n</code></pre>\n\n<p>Then we will set up the IP-based vhosts</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;first.example.com&#39;:\n ip =&gt; &#39;10.0.0.10&#39;,\n docroot =&gt; &#39;/var/www/first&#39;,\n ip_based =&gt; true,\n }\n apache::vhost { &#39;second.example.com&#39;:\n ip =&gt; &#39;10.0.0.11&#39;,\n docroot =&gt; &#39;/var/www/second&#39;,\n ip_based =&gt; true,\n }\n</code></pre>\n\n<hr>\n\n<p>Configure a mix of name-based and IP-based vhosts. First, we will add two IP-based vhosts on 10.0.0.10, one SSL and one non-SSL</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;The first IP-based vhost, non-ssl&#39;:\n servername =&gt; &#39;first.example.com&#39;,\n ip =&gt; &#39;10.0.0.10&#39;,\n port =&gt; &#39;80&#39;,\n ip_based =&gt; true,\n docroot =&gt; &#39;/var/www/first&#39;,\n }\n apache::vhost { &#39;The first IP-based vhost, ssl&#39;:\n servername =&gt; &#39;first.example.com&#39;,\n ip =&gt; &#39;10.0.0.10&#39;,\n port =&gt; &#39;443&#39;,\n ip_based =&gt; true,\n docroot =&gt; &#39;/var/www/first-ssl&#39;,\n ssl =&gt; true,\n }\n</code></pre>\n\n<p>Then, we will add two name-based vhosts listening on 10.0.0.20</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;second.example.com&#39;:\n ip =&gt; &#39;10.0.0.20&#39;,\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/second&#39;,\n }\n apache::vhost { &#39;third.example.com&#39;:\n ip =&gt; &#39;10.0.0.20&#39;,\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/third&#39;,\n }\n</code></pre>\n\n<p>If you want to add two name-based vhosts so that they will answer on either 10.0.0.10 or 10.0.0.20, you <strong>MUST</strong> declare <code>add_listen =&gt; &#39;false&#39;</code> to disable the otherwise automatic &#39;Listen 80&#39;, as it will conflict with the preceding IP-based vhosts.</p>\n\n<pre lang=\"puppet\"><code> apache::vhost { &#39;fourth.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/fourth&#39;,\n add_listen =&gt; false,\n }\n apache::vhost { &#39;fifth.example.com&#39;:\n port =&gt; &#39;80&#39;,\n docroot =&gt; &#39;/var/www/fifth&#39;,\n add_listen =&gt; false,\n }\n</code></pre>\n\n<h2>Implementation</h2>\n\n<h3>Classes and Defined Types</h3>\n\n<h4>Class: <code>apache::dev</code></h4>\n\n<p>Installs Apache development libraries</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache::dev&#39;: }\n</code></pre>\n\n<p>On FreeBSD you&#39;re required to define <code>apache::package</code> or <code>apache</code> class before <code>apache::dev</code>.</p>\n\n<h4>Defined Type: <code>apache::listen</code></h4>\n\n<p>Controls which ports Apache binds to for listening based on the title:</p>\n\n<pre lang=\"puppet\"><code> apache::listen { &#39;80&#39;: }\n apache::listen { &#39;443&#39;: }\n</code></pre>\n\n<p>Declaring this defined type will add all <code>Listen</code> directives to the <code>ports.conf</code> file in the Apache httpd configuration directory. <code>apache::listen</code> titles should always take the form of: <code>&lt;port&gt;</code>, <code>&lt;ipv4&gt;:&lt;port&gt;</code>, or <code>[&lt;ipv6&gt;]:&lt;port&gt;</code></p>\n\n<p>Apache httpd requires that <code>Listen</code> directives must be added for every port. The <code>apache::vhost</code> defined type will automatically add <code>Listen</code> directives unless the <code>apache::vhost</code> is passed <code>add_listen =&gt; false</code>.</p>\n\n<h4>Defined Type: <code>apache::namevirtualhost</code></h4>\n\n<p>Enables named-based hosting of a virtual host</p>\n\n<pre lang=\"puppet\"><code> class { &#39;apache::namevirtualhost`: }\n</code></pre>\n\n<p>Declaring this defined type will add all <code>NameVirtualHost</code> directives to the <code>ports.conf</code> file in the Apache https configuration directory. <code>apache::namevirtualhost</code> titles should always take the form of: <code>*</code>, <code>*:&lt;port&gt;</code>, <code>_default_:&lt;port&gt;</code>, <code>&lt;ip&gt;</code>, or <code>&lt;ip&gt;:&lt;port&gt;</code>.</p>\n\n<h4>Defined Type: <code>apache::balancermember</code></h4>\n\n<p>Define members of a proxy_balancer set (mod_proxy_balancer). Very useful when using exported resources.</p>\n\n<p>On every app server you can export a balancermember like this:</p>\n\n<pre lang=\"puppet\"><code> @@apache::balancermember { &quot;${::fqdn}-puppet00&quot;:\n balancer_cluster =&gt; &#39;puppet00&#39;,\n url =&gt; &quot;ajp://${::fqdn}:8009&quot;\n options =&gt; [&#39;ping=5&#39;, &#39;disablereuse=on&#39;, &#39;retry=5&#39;, &#39;ttl=120&#39;],\n }\n</code></pre>\n\n<p>And on the proxy itself you create the balancer cluster using the defined type apache::balancer:</p>\n\n<pre lang=\"puppet\"><code> apache::balancer { &#39;puppet00&#39;: }\n</code></pre>\n\n<p>If you need to use ProxySet in the balncer config you can do as so:</p>\n\n<pre lang=\"puppet\"><code> apache::balancer { &#39;puppet01&#39;:\n proxy_set =&gt; {&#39;stickysession&#39; =&gt; &#39;JSESSIONID&#39;},\n }\n</code></pre>\n\n<h3>Templates</h3>\n\n<p>The Apache module relies heavily on templates to enable the <code>vhost</code> and <code>apache::mod</code> defined types. These templates are built based on Facter facts around your operating system. Unless explicitly called out, most templates are not meant for configuration.</p>\n\n<h2>Limitations</h2>\n\n<p>This has been tested on Ubuntu Precise, Debian Wheezy, CentOS 5.8, and FreeBSD 9.1.</p>\n\n<h2>Development</h2>\n\n<h3>Overview</h3>\n\n<p>Puppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.</p>\n\n<p>We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.</p>\n\n<p>You can read the complete module contribution guide <a href=\"http://projects.puppetlabs.com/projects/module-site/wiki/Module_contributing\">on the Puppet Labs wiki.</a></p>\n\n<h3>Running tests</h3>\n\n<p>This project contains tests for both <a href=\"http://rspec-puppet.com/\">rspec-puppet</a> and <a href=\"https://github.com/puppetlabs/rspec-system\">rspec-system</a> to verify functionality. For in-depth information please see their respective documentation.</p>\n\n<p>Quickstart:</p>\n\n<pre><code>gem install bundler\nbundle install\nbundle exec rake spec\nbundle exec rake spec:system\n</code></pre>\n\n<h2>Copyright and License</h2>\n\n<p>Copyright (C) 2012 <a href=\"https://www.puppetlabs.com/\">Puppet Labs</a> Inc</p>\n\n<p>Puppet Labs can be contacted at: <a href=\"mailto:info@puppetlabs.com\">info@puppetlabs.com</a></p>\n\n<p>Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at</p>\n\n<p><a href=\"http://www.apache.org/licenses/LICENSE-2.0\">http://www.apache.org/licenses/LICENSE-2.0</a></p>\n\n<p>Unless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an &quot;AS IS&quot; BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.</p>\n</section>",
323
323
  "changelog": "<section class=\"markdown\"><h2>2013-12-05 Release 0.10.0</h2>\n\n<h3>Summary:</h3>\n\n<p>This release adds FreeBSD osfamily support and various other improvements to some mods.</p>\n\n<h3>Features:</h3>\n\n<ul>\n<li>Add suPHP_UserGroup directive to directory context</li>\n<li>Add support for ScriptAliasMatch directives</li>\n<li>Set SSLOptions StdEnvVars in server context</li>\n<li>No implicit <Directory> entry for ScriptAlias path</li>\n<li>Add support for overriding ErrorDocument</li>\n<li>Add support for AliasMatch directives</li>\n<li>Disable default &quot;allow from all&quot; in vhost-directories</li>\n<li>Add WSGIPythonPath as an optional parameter to mod_wsgi. </li>\n<li>Add mod_rpaf support</li>\n<li>Add directives: IndexOptions, IndexOrderDefault</li>\n<li>Add ability to include additional external configurations in vhost</li>\n<li>need to use the provider variable not the provider key value from the directory hash for matches</li>\n<li>Support for FreeBSD and few other features</li>\n<li>Add new params to apache::mod::mime class</li>\n<li>Allow apache::mod to specify module id and path</li>\n<li>added $server_root parameter</li>\n<li>Add Allow and ExtendedStatus support to mod_status</li>\n<li>Expand vhost/_directories.pp directive support</li>\n<li>Add initial support for nss module (no directives in vhost template yet)</li>\n<li>added peruser and event mpms</li>\n<li>added $service_name parameter</li>\n<li>add parameter for TraceEnable</li>\n<li>Make LogLevel configurable for server and vhost</li>\n<li>Add documentation about $ip</li>\n<li>Add ability to pass ip (instead of wildcard) in default vhost files</li>\n</ul>\n\n<h3>Bugfixes:</h3>\n\n<ul>\n<li>Don&#39;t listen on port or set NameVirtualHost for non-existent vhost</li>\n<li>only apply Directory defaults when provider is a directory</li>\n<li>Working mod_authnz_ldap support on Debian/Ubuntu</li>\n</ul>\n\n<h2>2013-09-06 Release 0.9.0</h2>\n\n<h3>Summary:</h3>\n\n<p>This release adds more parameters to the base apache class and apache defined\nresource to make the module more flexible. It also adds or enhances SuPHP,\nWSGI, and Passenger mod support, and support for the ITK mpm module.</p>\n\n<h3>Backwards-incompatible Changes:</h3>\n\n<ul>\n<li>Remove many default mods that are not normally needed.</li>\n<li>Remove <code>rewrite_base</code> <code>apache::vhost</code> parameter; did not work anyway.</li>\n<li>Specify dependencies on stdlib &gt;=2.4.0 (this was already the case, but\nmaking explicit)</li>\n<li>Deprecate <code>a2mod</code> in favor of the <code>apache::mod::*</code> classes and <code>apache::mod</code>\ndefined resource.</li>\n</ul>\n\n<h3>Features:</h3>\n\n<ul>\n<li><code>apache</code> class\n\n<ul>\n<li>Add <code>httpd_dir</code> parameter to change the location of the configuration\nfiles.</li>\n<li>Add <code>logroot</code> parameter to change the logroot</li>\n<li>Add <code>ports_file</code> parameter to changes the <code>ports.conf</code> file location</li>\n<li>Add <code>keepalive</code> parameter to enable persistent connections</li>\n<li>Add <code>keepalive_timeout</code> parameter to change the timeout</li>\n<li>Update <code>default_mods</code> to be able to take an array of mods to enable.</li>\n</ul></li>\n<li><code>apache::vhost</code>\n\n<ul>\n<li>Add <code>wsgi_daemon_process</code>, <code>wsgi_daemon_process_options</code>,\n<code>wsgi_process_group</code>, and <code>wsgi_script_aliases</code> parameters for per-vhost\nWSGI configuration.</li>\n<li>Add <code>access_log_syslog</code> parameter to enable syslogging.</li>\n<li>Add <code>error_log_syslog</code> parameter to enable syslogging of errors.</li>\n<li>Add <code>directories</code> hash parameter. Please see README for documentation.</li>\n<li>Add <code>sslproxyengine</code> parameter to enable SSLProxyEngine</li>\n<li>Add <code>suphp_addhandler</code>, <code>suphp_engine</code>, and <code>suphp_configpath</code> for\nconfiguring SuPHP.</li>\n<li>Add <code>custom_fragment</code> parameter to allow for arbitrary apache\nconfiguration injection. (Feature pull requests are prefered over using\nthis, but it is available in a pinch.)</li>\n</ul></li>\n<li>Add <code>apache::mod::suphp</code> class for configuring SuPHP.</li>\n<li>Add <code>apache::mod::itk</code> class for configuring ITK mpm module.</li>\n<li>Update <code>apache::mod::wsgi</code> class for global WSGI configuration with\n<code>wsgi_socket_prefix</code> and <code>wsgi_python_home</code> parameters.</li>\n<li>Add README.passenger.md to document the <code>apache::mod::passenger</code> usage.\nAdded <code>passenger_high_performance</code>, <code>passenger_pool_idle_time</code>,\n<code>passenger_max_requests</code>, <code>passenger_stat_throttle_rate</code>, <code>rack_autodetect</code>,\nand <code>rails_autodetect</code> parameters.</li>\n<li>Separate the httpd service resource into a new <code>apache::service</code> class for\ndependency chaining of <code>Class[&#39;apache&#39;] -&gt; &lt;resource&gt; ~&gt;\nClass[&#39;apache::service&#39;]</code></li>\n<li>Added <code>apache::mod::proxy_balancer</code> class for <code>apache::balancer</code></li>\n</ul>\n\n<h3>Bugfixes:</h3>\n\n<ul>\n<li>Change dependency to puppetlabs-concat</li>\n<li>Fix ruby 1.9 bug for <code>a2mod</code></li>\n<li>Change servername to be <code>$::hostname</code> if there is no <code>$::fqdn</code></li>\n<li>Make <code>/etc/ssl/certs</code> the default ssl certs directory for RedHat non-5.</li>\n<li>Make <code>php</code> the default php package for RedHat non-5.</li>\n<li>Made <code>aliases</code> able to take a single alias hash instead of requiring an\narray.</li>\n</ul>\n\n<h2>2013-07-26 Release 0.8.1</h2>\n\n<h3>Bugfixes:</h3>\n\n<ul>\n<li>Update <code>apache::mpm_module</code> detection for worker/prefork</li>\n<li>Update <code>apache::mod::cgi</code> and <code>apache::mod::cgid</code> detection for\nworker/prefork</li>\n</ul>\n\n<h2>2013-07-16 Release 0.8.0</h2>\n\n<h3>Features:</h3>\n\n<ul>\n<li>Add <code>servername</code> parameter to <code>apache</code> class</li>\n<li>Add <code>proxy_set</code> parameter to <code>apache::balancer</code> define</li>\n</ul>\n\n<h3>Bugfixes:</h3>\n\n<ul>\n<li>Fix ordering for multiple <code>apache::balancer</code> clusters</li>\n<li>Fix symlinking for sites-available on Debian-based OSs</li>\n<li>Fix dependency ordering for recursive confdir management</li>\n<li>Fix <code>apache::mod::*</code> to notify the service on config change</li>\n<li>Documentation updates</li>\n</ul>\n\n<h2>2013-07-09 Release 0.7.0</h2>\n\n<h3>Changes:</h3>\n\n<ul>\n<li>Essentially rewrite the module -- too many to list</li>\n<li><code>apache::vhost</code> has many abilities -- see README.md for details</li>\n<li><code>apache::mod::*</code> classes provide httpd mod-loading capabilities</li>\n<li><code>apache</code> base class is much more configurable</li>\n</ul>\n\n<h3>Bugfixes:</h3>\n\n<ul>\n<li>Many. And many more to come</li>\n</ul>\n\n<h2>2013-03-2 Release 0.6.0</h2>\n\n<ul>\n<li>update travis tests (add more supported versions)</li>\n<li>add access log_parameter</li>\n<li>make purging of vhost dir configurable</li>\n</ul>\n\n<h2>2012-08-24 Release 0.4.0</h2>\n\n<h3>Changes:</h3>\n\n<ul>\n<li><code>include apache</code> is now required when using <code>apache::mod::*</code></li>\n</ul>\n\n<h3>Bugfixes:</h3>\n\n<ul>\n<li>Fix syntax for validate_re</li>\n<li>Fix formatting in vhost template</li>\n<li><p>Fix spec tests such that they pass</p>\n\n<p>2012-05-08 Puppet Labs <a href=\"mailto:info@puppetlabs.com\">info@puppetlabs.com</a> - 0.0.4\ne62e362 Fix broken tests for ssl, vhost, vhost::*\n42c6363 Changes to match style guide and pass puppet-lint without error\n42bc8ba changed name =&gt; path for file resources in order to name namevar by it&#39;s name\n72e13de One end too much\n0739641 style guide fixes: &#39;true&#39; &lt;&gt; true, $operatingsystem needs to be $::operatingsystem, etc.\n273f94d fix tests\na35ede5 (#13860) Make a2enmod/a2dismo commands optional\n98d774e (#13860) Autorequire Package[&#39;httpd&#39;]\n05fcec5 (#13073) Add missing puppet spec tests\n541afda (#6899) Remove virtual a2mod definition\n976cb69 (#13072) Move mod python and wsgi package names to params\n323915a (#13060) Add .gitignore to repo\nfdf40af (#13060) Remove pkg directory from source tree\nfd90015 Add LICENSE file and update the ModuleFile\nd3d0d23 Re-enable local php class\nd7516c7 Make management of firewalls configurable for vhosts\n60f83ba Explicitly lookup scope of apache_name in templates.\nf4d287f (#12581) Add explicit ordering for vdir directory\n88a2ac6 (#11706) puppetlabs-apache depends on puppetlabs-firewall\na776a8b (#11071) Fix to work with latest firewall module\n2b79e8b (#11070) Add support for Scientific Linux\n405b3e9 Fix for a2mod\n57b9048 Commit apache::vhost::redirect Manifest\n8862d01 Commit apache::vhost::proxy Manifest\nd5c1fd0 Commit apache::mod::wsgi Manifest\na825ac7 Commit apache::mod::python Manifest\nb77062f Commit Templates\n9a51b4a Vhost File Declarations\n6cf7312 Defaults for Parameters\n6a5b11a Ensure installed\nf672e46 a2mod fix\n8a56ee9 add pthon support to apache</p></li>\n</ul>\n</section>",
324
324
  "license": "<section class=\"plaintext\"><pre>Copyright (C) 2012 Puppet Labs Inc\n\nPuppet Labs can be contacted at: info@puppetlabs.com\n\nLicensed under the Apache License, Version 2.0 (the &quot;License&quot;);\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:&#x2F;&#x2F;www.apache.org&#x2F;licenses&#x2F;LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an &quot;AS IS&quot; BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n</pre></section>",
325
325
  "created_at": "2013-12-05 15:29:14 -0800",
@@ -477,7 +477,7 @@
477
477
  "file_size": 16837,
478
478
  "file_md5": "2b5a31ead952c59727f13dc5b12b15f8",
479
479
  "downloads": 1249,
480
- "readme": "<section class=\"markdown\"><h1>Puppet module: apache</h1>\n\n<p>This is a Puppet apache module from the second generation of Example42 Puppet Modules.</p>\n\n<p>Made by Alessandro Franceschi / Lab42</p>\n\n<p>Official site: <a href=\"http://www.example42.com\">http://www.example42.com</a></p>\n\n<p>Official git repository: <a href=\"http://github.com/example42/puppet-apache\">http://github.com/example42/puppet-apache</a></p>\n\n<p>Released under the terms of Apache 2 License.</p>\n\n<p>This module requires functions provided by the Example42 Puppi module.</p>\n\n<p>For detailed info about the logic and usage patterns of Example42 modules read README.usage on Example42 main modules set.</p>\n\n<h2>USAGE - Module specific usage</h2>\n\n<ul>\n<li><p>Install apache with a custom httpd.conf template and some virtual hosts</p>\n\n<pre><code> class { &#39;apache&#39;:\n template =&gt; &#39;example42/apache/httpd.conf.erb&#39;,\n }\n\n apache::vhost { &#39;mysite&#39;:\n docroot =&gt; &#39;/path/to/docroot&#39;,\n template =&gt; &#39;example42/apache/vhost/mysite.com.erb&#39;,\n }\n</code></pre></li>\n<li><p>Install mod ssl</p>\n\n<pre><code>include apache::ssl\n</code></pre></li>\n<li><p>Manage basic auth users (Here user joe is created with the $crypt_password on the defined htpasswd_file</p>\n\n<pre><code>apache::htpasswd { &#39;joe&#39;:\n crypt_password =&gt; &#39;B5dPQYYjf.jjA&#39;,\n htpasswd_file =&gt; &#39;/etc/httpd/users.passwd&#39;,\n}\n</code></pre></li>\n<li><p>Manage custom configuration files (created in conf.d, source or content can be defined)</p>\n\n<pre><code>apache::dotconf { &#39;trac&#39;:\n content =&gt; &#39;template(&quot;site/trac/apache.conf.erb&quot;)&#39;\n}\n</code></pre></li>\n<li><p>Add other listening ports (a relevant NameVirtualHost directive is automatically created)</p>\n\n<pre><code>apache::listen { &#39;8080&#39;: }\n</code></pre></li>\n<li><p>Add other listening ports without creating a relevant NameVirtualHost directive</p>\n\n<pre><code>apache::listen { &#39;8080&#39;:\n $namevirtualhost = false,\n}\n</code></pre></li>\n<li><p>Add an apache module and manage its configuraton</p>\n\n<pre><code>apache::module { &#39;proxy&#39;:\n templatefile =&gt; &#39;site/apache/module/proxy.conf.erb&#39;,\n}\n</code></pre></li>\n<li><p>Install mod passenger</p>\n\n<pre><code>include apache::passenger\n</code></pre></li>\n</ul>\n\n<h2>USAGE - Basic management</h2>\n\n<ul>\n<li><p>Install apache with default settings</p>\n\n<pre><code>class { &quot;apache&quot;: }\n</code></pre></li>\n<li><p>Disable apache service.</p>\n\n<pre><code>class { &quot;apache&quot;:\n disable =&gt; true\n}\n</code></pre></li>\n<li><p>Disable apache service at boot time, but don&#39;t stop if is running.</p>\n\n<pre><code>class { &quot;apache&quot;:\n disableboot =&gt; true\n}\n</code></pre></li>\n<li><p>Remove apache package</p>\n\n<pre><code>class { &quot;apache&quot;:\n absent =&gt; true\n}\n</code></pre></li>\n<li><p>Enable auditing without making changes on existing apache configuration files</p>\n\n<pre><code>class { &quot;apache&quot;:\n audit_only =&gt; true\n}\n</code></pre></li>\n<li><p>Install apache with a specific version</p>\n\n<pre><code>class { &quot;apache&quot;:\n version =&gt; &#39;2.2.22&#39;\n}\n</code></pre></li>\n</ul>\n\n<h2>USAGE - Default server management</h2>\n\n<ul>\n<li><p>Simple way to manage default apache configuration</p>\n\n<pre><code>apache::vhost { &#39;default&#39;:\n docroot =&gt; &#39;/var/www/document_root&#39;,\n server_name =&gt; false,\n priority =&gt; &#39;&#39;,\n template =&gt; &#39;apache/virtualhost/vhost.conf.erb&#39;,\n}\n</code></pre></li>\n<li><p>Using a source file to create the vhost</p>\n\n<pre><code>apache::vhost { &#39;default&#39;:\n source =&gt; &#39;puppet:///files/web/default.conf&#39;\n template =&gt; &#39;&#39;,\n}\n</code></pre></li>\n</ul>\n\n<h2>USAGE - Overrides and Customizations</h2>\n\n<ul>\n<li><p>Use custom sources for main config file</p>\n\n<pre><code>class { &quot;apache&quot;:\n source =&gt; [ &quot;puppet:///modules/lab42/apache/apache.conf-${hostname}&quot; , &quot;puppet:///modules/lab42/apache/apache.conf&quot; ],\n}\n</code></pre></li>\n<li><p>Use custom source directory for the whole configuration dir</p>\n\n<pre><code>class { &quot;apache&quot;:\n source_dir =&gt; &quot;puppet:///modules/lab42/apache/conf/&quot;,\n source_dir_purge =&gt; false, # Set to true to purge any existing file not present in $source_dir\n}\n</code></pre></li>\n<li><p>Use custom template for main config file </p>\n\n<pre><code>class { &quot;apache&quot;:\n template =&gt; &quot;example42/apache/apache.conf.erb&quot;, \n}\n</code></pre></li>\n<li><p>Define custom options that can be used in a custom template without the\nneed to add parameters to the apache class</p>\n\n<pre><code>class { &quot;apache&quot;:\n template =&gt; &quot;example42/apache/apache.conf.erb&quot;, \n options =&gt; {\n &#39;LogLevel&#39; =&gt; &#39;INFO&#39;,\n &#39;UsePAM&#39; =&gt; &#39;yes&#39;,\n },\n}\n</code></pre></li>\n<li><p>Automaticallly include a custom subclass</p>\n\n<pre><code>class { &quot;apache:&quot;\n my_class =&gt; &#39;apache::example42&#39;,\n}\n</code></pre></li>\n</ul>\n\n<h2>USAGE - Example42 extensions management</h2>\n\n<ul>\n<li><p>Activate puppi (recommended, but disabled by default)\nNote that this option requires the usage of Example42 puppi module</p>\n\n<pre><code>class { &quot;apache&quot;: \n puppi =&gt; true,\n}\n</code></pre></li>\n<li><p>Activate puppi and use a custom puppi_helper template (to be provided separately with\na puppi::helper define ) to customize the output of puppi commands </p>\n\n<pre><code>class { &quot;apache&quot;:\n puppi =&gt; true,\n puppi_helper =&gt; &quot;myhelper&quot;, \n}\n</code></pre></li>\n<li><p>Activate automatic monitoring (recommended, but disabled by default)\nThis option requires the usage of Example42 monitor and relevant monitor tools modules</p>\n\n<pre><code>class { &quot;apache&quot;:\n monitor =&gt; true,\n monitor_tool =&gt; [ &quot;nagios&quot; , &quot;monit&quot; , &quot;munin&quot; ],\n}\n</code></pre></li>\n<li><p>Activate automatic firewalling \nThis option requires the usage of Example42 firewall and relevant firewall tools modules</p>\n\n<pre><code>class { &quot;apache&quot;: \n firewall =&gt; true,\n firewall_tool =&gt; &quot;iptables&quot;,\n firewall_src =&gt; &quot;10.42.0.0/24&quot;,\n firewall_dst =&gt; &quot;$ipaddress_eth0&quot;,\n}\n</code></pre></li>\n</ul>\n\n<p><a href=\"https://travis-ci.org/example42/puppet-apache\"><img src=\"https://travis-ci.org/example42/puppet-apache.png?branch=master\" alt=\"Build Status\"></a></p>\n</section>",
480
+ "readme": "<section class=\"markdown\"><h1>Puppet module: apache</h1>\n\n<p>This is a Puppet apache module from the second generation of Example42 Puppet Modules.</p>\n\n<p>Made by Alessandro Franceschi / Lab42</p>\n\n<p>Official site: <a href=\"http://www.example42.com\">http://www.example42.com</a></p>\n\n<p>Official git repository: <a href=\"http://github.com/example42/puppet-apache\">http://github.com/example42/puppet-apache</a></p>\n\n<p>Released under the terms of Apache 2 License.</p>\n\n<p>This module requires functions provided by the Example42 Puppi module.</p>\n\n<p>For detailed info about the logic and usage patterns of Example42 modules read README.usage on Example42 main modules set.</p>\n\n<h2>USAGE - Module specific usage</h2>\n\n<ul>\n<li><p>Install apache with a custom httpd.conf template and some virtual hosts</p>\n\n<pre><code> class { &#39;apache&#39;:\n template =&gt; &#39;example42/apache/httpd.conf.erb&#39;,\n }\n\n apache::vhost { &#39;mysite&#39;:\n docroot =&gt; &#39;/path/to/docroot&#39;,\n template =&gt; &#39;example42/apache/vhost/mysite.com.erb&#39;,\n }\n</code></pre></li>\n<li><p>Install mod ssl</p>\n\n<pre><code>include apache::ssl\n</code></pre></li>\n<li><p>Manage basic auth users (Here user joe is created with the $crypt_password on the defined htpasswd_file</p>\n\n<pre><code>apache::htpasswd { &#39;joe&#39;:\n crypt_password =&gt; &#39;B5dPQYYjf.jjA&#39;,\n htpasswd_file =&gt; &#39;/etc/httpd/users.passwd&#39;,\n}\n</code></pre></li>\n<li><p>Manage custom configuration files (created in conf.d, source or content can be defined)</p>\n\n<pre><code>apache::dotconf { &#39;trac&#39;:\n content =&gt; &#39;template(&quot;site/trac/apache.conf.erb&quot;)&#39;\n}\n</code></pre></li>\n<li><p>Add other listening ports (a relevant NameVirtualHost directive is automatically created)</p>\n\n<pre><code>apache::listen { &#39;8080&#39;: }\n</code></pre></li>\n<li><p>Add other listening ports without creating a relevant NameVirtualHost directive</p>\n\n<pre><code>apache::listen { &#39;8080&#39;:\n $namevirtualhost = false,\n}\n</code></pre></li>\n<li><p>Add an apache module and manage its configuraton</p>\n\n<pre><code>apache::module { &#39;proxy&#39;:\n templatefile =&gt; &#39;site/apache/module/proxy.conf.erb&#39;,\n}\n</code></pre></li>\n<li><p>Install mod passenger</p>\n\n<pre><code>include apache::passenger\n</code></pre></li>\n</ul>\n\n<h2>USAGE - Basic management</h2>\n\n<ul>\n<li><p>Install apache with default settings</p>\n\n<pre><code>class { &quot;apache&quot;: }\n</code></pre></li>\n<li><p>Disable apache service.</p>\n\n<pre><code>class { &quot;apache&quot;:\n disable =&gt; true\n}\n</code></pre></li>\n<li><p>Disable apache service at boot time, but don&#39;t stop if is running.</p>\n\n<pre><code>class { &quot;apache&quot;:\n disableboot =&gt; true\n}\n</code></pre></li>\n<li><p>Remove apache package</p>\n\n<pre><code>class { &quot;apache&quot;:\n absent =&gt; true\n}\n</code></pre></li>\n<li><p>Enable auditing without making changes on existing apache configuration files</p>\n\n<pre><code>class { &quot;apache&quot;:\n audit_only =&gt; true\n}\n</code></pre></li>\n<li><p>Install apache with a specific version</p>\n\n<pre><code>class { &quot;apache&quot;:\n version =&gt; &#39;2.2.22&#39;\n}\n</code></pre></li>\n</ul>\n\n<h2>USAGE - Default server management</h2>\n\n<ul>\n<li><p>Simple way to manage default apache configuration</p>\n\n<pre><code>apache::vhost { &#39;default&#39;:\n docroot =&gt; &#39;/var/www/document_root&#39;,\n server_name =&gt; false,\n priority =&gt; &#39;&#39;,\n template =&gt; &#39;apache/virtualhost/vhost.conf.erb&#39;,\n}\n</code></pre></li>\n<li><p>Using a source file to create the vhost</p>\n\n<pre><code>apache::vhost { &#39;default&#39;:\n source =&gt; &#39;puppet:///files/web/default.conf&#39;\n template =&gt; &#39;&#39;,\n}\n</code></pre></li>\n</ul>\n\n<h2>USAGE - Overrides and Customizations</h2>\n\n<ul>\n<li><p>Use custom sources for main config file</p>\n\n<pre><code>class { &quot;apache&quot;:\n source =&gt; [ &quot;puppet:///modules/lab42/apache/apache.conf-${hostname}&quot; , &quot;puppet:///modules/lab42/apache/apache.conf&quot; ],\n}\n</code></pre></li>\n<li><p>Use custom source directory for the whole configuration dir</p>\n\n<pre><code>class { &quot;apache&quot;:\n source_dir =&gt; &quot;puppet:///modules/lab42/apache/conf/&quot;,\n source_dir_purge =&gt; false, # Set to true to purge any existing file not present in $source_dir\n}\n</code></pre></li>\n<li><p>Use custom template for main config file </p>\n\n<pre><code>class { &quot;apache&quot;:\n template =&gt; &quot;example42/apache/apache.conf.erb&quot;, \n}\n</code></pre></li>\n<li><p>Define custom options that can be used in a custom template without the\nneed to add parameters to the apache class</p>\n\n<pre><code>class { &quot;apache&quot;:\n template =&gt; &quot;example42/apache/apache.conf.erb&quot;, \n options =&gt; {\n &#39;LogLevel&#39; =&gt; &#39;INFO&#39;,\n &#39;UsePAM&#39; =&gt; &#39;yes&#39;,\n },\n}\n</code></pre></li>\n<li><p>Automaticallly include a custom subclass</p>\n\n<pre><code>class { &quot;apache:&quot;\n my_class =&gt; &#39;apache::example42&#39;,\n}\n</code></pre></li>\n</ul>\n\n<h2>USAGE - Example42 extensions management</h2>\n\n<ul>\n<li><p>Activate puppi (recommended, but disabled by default)\nNote that this option requires the usage of Example42 puppi module</p>\n\n<pre><code>class { &quot;apache&quot;: \n puppi =&gt; true,\n}\n</code></pre></li>\n<li><p>Activate puppi and use a custom puppi_helper template (to be provided separately with\na puppi::helper define ) to customize the output of puppi commands </p>\n\n<pre><code>class { &quot;apache&quot;:\n puppi =&gt; true,\n puppi_helper =&gt; &quot;myhelper&quot;, \n}\n</code></pre></li>\n<li><p>Activate automatic monitoring (recommended, but disabled by default)\nThis option requires the usage of Example42 monitor and relevant monitor tools modules</p>\n\n<pre><code>class { &quot;apache&quot;:\n monitor =&gt; true,\n monitor_tool =&gt; [ &quot;nagios&quot; , &quot;monit&quot; , &quot;munin&quot; ],\n}\n</code></pre></li>\n<li><p>Activate automatic firewalling \nThis option requires the usage of Example42 firewall and relevant firewall tools modules</p>\n\n<pre><code>class { &quot;apache&quot;: \n firewall =&gt; true,\n firewall_tool =&gt; &quot;iptables&quot;,\n firewall_src =&gt; &quot;10.42.0.0/24&quot;,\n firewall_dst =&gt; &quot;$ipaddress_eth0&quot;,\n}\n</code></pre></li>\n</ul>\n\n<p><a href=\"https://travis-ci.org/example42/puppet-apache\"><img src=\"https://travis-ci.org/example42/puppet-apache.png?branch=main\" alt=\"Build Status\"></a></p>\n</section>",
481
481
  "changelog": null,
482
482
  "license": "<section class=\"plaintext\"><pre>Copyright (C) 2013 Alessandro Franceschi &#x2F; Lab42\n\nfor the relevant commits Copyright (C) by the respective authors.\n\nContact Lab42 at: info@lab42.it\n\nLicensed under the Apache License, Version 2.0 (the &quot;License&quot;);\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:&#x2F;&#x2F;www.apache.org&#x2F;licenses&#x2F;LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an &quot;AS IS&quot; BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n</pre></section>",
483
483
  "created_at": "2013-11-22 01:04:52 -0800",
@@ -1397,7 +1397,7 @@
1397
1397
  "file_size": 31798,
1398
1398
  "file_md5": "68f18e110ffa502fd76514e56dc440a7",
1399
1399
  "downloads": 162,
1400
- "readme": "<section class=\"markdown\"><h1>apache Module</h1>\n\n<p>This module manages apache, with emphasis on setting up virtual hosts and\nmanaging ssl.</p>\n\n<h1>Examples</h1>\n\n<pre lang=\"puppet\"><code> # configure the global apache\n class { &#39;apache&#39;:\n ensure =&gt; running,\n enable =&gt; true,\n server_admin =&gt; &#39;webmaster@example.com&#39;,\n }\n\n # setup a vhost for www.example.com, mark it as the default vhost and\n # add a few aliases.\n apache::vhost { &#39;www.example.com&#39;:\n is_default =&gt; true,\n server_name =&gt; &#39;www.example.com&#39;,\n server_alias =&gt; [ &#39;www-2.example.com&#39;,\n &#39;blog.example.com&#39; ],\n ssl =&gt; false,\n }\n\n # if server_name is not specified, the $namevar is used. So in this case\n # server_name = &#39;www2.example.com&#39;. This one has ssl setup using a\n # self-signed cert (since not intermedaite cert is provided).\n apache::vhost { &#39;www2.example.com&#39;:\n ssl =&gt; true,\n ssl_key_file =&gt; &#39;/etc/pki/tls/private/private.key&#39;,\n ssl_crt_file =&gt; &#39;/etc/pki/tls/certs/public.crt&#39;,\n }\n\n # another ssl example, this time with an intermediate cert being provided\n apache::vhost { &#39;www3.example.com:\n ssl =&gt; true,\n ssl_key_file =&gt; &#39;/etc/pki/tls/private/private.key&#39;,\n ssl_crt_file =&gt; &#39;/etc/pki/tls/certs/public.crt&#39;,\n ssl_int_file =&gt; &#39;/etc/pki/tls/certs/intermediate.crt&#39;,\n }\n</code></pre>\n\n<h2>License</h2>\n\n<p>See LICENSE file</p>\n\n<h2>Copyright</h2>\n\n<p>Copyright &copy; 2013 The Regents of the University of California</p>\n\n<h2>Contact</h2>\n\n<p>Aaron Russo <a href=\"mailto:arusso@berkeley.edu\">arusso@berkeley.edu</a></p>\n\n<h2>Support</h2>\n\n<p>Please log tickets and issues at the\n<a href=\"https://github.com/arusso/puppet-apache/issues/\">Projects site</a></p>\n</section>",
1400
+ "readme": "<section class=\"markdown\"><h1>apache Module</h1>\n\n<p>This module manages apache, with emphasis on setting up virtual hosts and\nmanaging ssl.</p>\n\n<h1>Examples</h1>\n\n<pre lang=\"puppet\"><code> # configure the global apache\n class { &#39;apache&#39;:\n ensure =&gt; running,\n enable =&gt; true,\n server_admin =&gt; &#39;web@example.com&#39;,\n }\n\n # setup a vhost for www.example.com, mark it as the default vhost and\n # add a few aliases.\n apache::vhost { &#39;www.example.com&#39;:\n is_default =&gt; true,\n server_name =&gt; &#39;www.example.com&#39;,\n server_alias =&gt; [ &#39;www-2.example.com&#39;,\n &#39;blog.example.com&#39; ],\n ssl =&gt; false,\n }\n\n # if server_name is not specified, the $namevar is used. So in this case\n # server_name = &#39;www2.example.com&#39;. This one has ssl setup using a\n # self-signed cert (since not intermedaite cert is provided).\n apache::vhost { &#39;www2.example.com&#39;:\n ssl =&gt; true,\n ssl_key_file =&gt; &#39;/etc/pki/tls/private/private.key&#39;,\n ssl_crt_file =&gt; &#39;/etc/pki/tls/certs/public.crt&#39;,\n }\n\n # another ssl example, this time with an intermediate cert being provided\n apache::vhost { &#39;www3.example.com:\n ssl =&gt; true,\n ssl_key_file =&gt; &#39;/etc/pki/tls/private/private.key&#39;,\n ssl_crt_file =&gt; &#39;/etc/pki/tls/certs/public.crt&#39;,\n ssl_int_file =&gt; &#39;/etc/pki/tls/certs/intermediate.crt&#39;,\n }\n</code></pre>\n\n<h2>License</h2>\n\n<p>See LICENSE file</p>\n\n<h2>Copyright</h2>\n\n<p>Copyright &copy; 2013 The Regents of the University of California</p>\n\n<h2>Contact</h2>\n\n<p>Aaron Russo <a href=\"mailto:arusso@berkeley.edu\">arusso@berkeley.edu</a></p>\n\n<h2>Support</h2>\n\n<p>Please log tickets and issues at the\n<a href=\"https://github.com/arusso/puppet-apache/issues/\">Projects site</a></p>\n</section>",
1401
1401
  "changelog": "<section class=\"plaintext\"><pre>2013-10-07 Aaron Russo &lt;arusso@berkeley.edu&gt; - 0.0.5\n* Issue#9: Allow override of Ssl::Cert dependencies\n\n2013-10-03 Aaron Russo &lt;arusso@berkeley.edu&gt; - 0.0.4\n* Issue#6: Ability to enable&#x2F;disable include files\n* Issue#8: Implemented unused document_root parameter in vhosts\n\n2013-09-19 Aaron Russo &lt;arusso@berkeley.edu&gt; - 0.0.3\n* Issue#1: adding NameVirtualHost lines\n* Issue#2: replaced priority parameter with is_default\n* Issue#3: removed version parameter from apache class\n* Issue#4: removed params_lookup function for default param values\n\n2013-06-02 Aaron Russo &lt;arusso@berkeley.edu&gt; - 0.0.2\n* updating docs for acct rename\n\n2013-05-28 Aaron Russo &lt;arusso@berkeley.edu&gt; - 0.0.1\n* Initial Release\n</pre></section>",
1402
1402
  "license": "<section class=\"plaintext\"><pre>The MIT License (MIT)\n\nCopyright (c) 2013 The Regents of the University of California\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the &quot;Software&quot;), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and&#x2F;or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n</pre></section>",
1403
1403
  "created_at": "2013-10-07 14:22:59 -0700",
@@ -2807,7 +2807,7 @@
2807
2807
  "file_size": 187123,
2808
2808
  "file_md5": "8269efa8b955dec684abd53a82172e44",
2809
2809
  "downloads": 1952,
2810
- "readme": "<section class=\"markdown\"><h1>augeasproviders: alternative Augeas-based providers for Puppet</h1>\n\n<p>This module provides alternative providers for core Puppet types such as\n<code>host</code> and <code>mailalias</code> using the Augeas configuration library. It also adds\nsome of its own types for new functionality.</p>\n\n<p>The advantage of using Augeas over the default Puppet <code>parsedfile</code>\nimplementations is that Augeas will go to great lengths to preserve file\nformatting and comments, while also failing safely when needed.</p>\n\n<p>These providers will hide <em>all</em> of the Augeas commands etc., you don&#39;t need to\nknow anything about Augeas to make use of it.</p>\n\n<p>If you want to make changes to config files in your own way, you should use\nthe <code>augeas</code> type directly. For more information about Augeas, see the\n<a href=\"http://augeas.net\">web site</a> or the\n<a href=\"http://projects.puppetlabs.com/projects/puppet/wiki/Puppet_Augeas\">Puppet/Augeas</a>\nwiki page.</p>\n\n<h2>Types and providers</h2>\n\n<p>The following builtin types have an Augeas-based provider implemented:</p>\n\n<ul>\n<li><code>host</code></li>\n<li><code>mailalias</code></li>\n</ul>\n\n<p>The following other types have a provider implemented:</p>\n\n<ul>\n<li><code>mounttab</code> from <a href=\"http://forge.puppetlabs.com/puppetlabs/mount_providers\">puppetlabs-mount_providers</a></li>\n</ul>\n\n<p>The module adds the following new types:</p>\n\n<ul>\n<li><code>apache_setenv</code> for updating SetEnv entries in Apache HTTP Server configs</li>\n<li><code>kernel_parameter</code> for adding kernel parameters to GRUB Legacy or GRUB 2 configs</li>\n<li><code>nrpe_command</code> for setting command entries in Nagios NRPE&#39;s <code>nrpe.cfg</code></li>\n<li><code>pg_hba</code> for PostgreSQL&#39;s <code>pg_hba.conf</code> entries</li>\n<li><code>puppet_auth</code> for authentication rules in Puppet&#39;s <code>auth.conf</code></li>\n<li><code>shellvar</code> for shell variables in <code>/etc/sysconfig</code> or <code>/etc/default</code> etc.</li>\n<li><code>sshd_config</code> for setting configuration entries in OpenSSH&#39;s <code>sshd_config</code></li>\n<li><code>sshd_config_subsystem</code> for setting subsystem entries in OpenSSH&#39;s <code>sshd_config</code></li>\n<li><code>sysctl</code> for entries inside Linux&#39;s sysctl.conf</li>\n<li><code>syslog</code> for entries inside syslog.conf</li>\n</ul>\n\n<p>Lots of examples are provided in the accompanying documentation (see\n<code>docs/examples.html</code>) and are also published <a href=\"http://augeasproviders.com/documentation/examples.html\">on the web site</a>.\nIf this is a git checkout, you will need to run <code>make</code> in docs/ to generate the\nHTML pages.</p>\n\n<p>Type documentation can be generated with <code>puppet doc -r type</code> or viewed on the\n<a href=\"http://forge.puppetlabs.com/domcleal/augeasproviders\">Puppet Forge page</a>.</p>\n\n<p>For builtin types and mounttab, the default provider will automatically become\nthe <code>augeas</code> provider once the module is installed. This can be changed back\nto <code>parsed</code> where necessary.</p>\n\n<h2>Requirements</h2>\n\n<p>Ensure both Augeas and ruby-augeas 0.3.0+ bindings are installed and working as\nnormal.</p>\n\n<p>See <a href=\"http://projects.puppetlabs.com/projects/puppet/wiki/Puppet_Augeas#Pre-requisites\">Puppet/Augeas pre-requisites</a>.</p>\n\n<h2>Installing</h2>\n\n<p>On Puppet 2.7.14+, the module can be installed easily (<a href=\"http://docs.puppetlabs.com/puppet/2.7/reference/modules_installing.html\">documentation</a>):</p>\n\n<pre><code>puppet module install domcleal/augeasproviders\n</code></pre>\n\n<p>You may see an error similar to this on Puppet 2.x (<a href=\"http://projects.puppetlabs.com/issues/13858\">#13858</a>):</p>\n\n<pre><code>Error 400 on SERVER: Puppet::Parser::AST::Resource failed with error ArgumentError: Invalid resource type `kernel_parameter` at ...\n</code></pre>\n\n<p>Ensure the module is present in your puppetmaster&#39;s own environment (it doesn&#39;t\nhave to use it) and that the master has pluginsync enabled. Run the agent on\nthe puppetmaster to cause the custom types to be synced to its local libdir\n(<code>puppet master --configprint libdir</code>) and then restart the puppetmaster so it\nloads them.</p>\n\n<h2>Planned</h2>\n\n<p>The following builtin types have Augeas-based providers planned:</p>\n\n<ul>\n<li><code>ssh_authorized_key</code></li>\n<li><code>port</code>, once <a href=\"http://projects.puppetlabs.com/issues/5660\">#5660</a> is done</li>\n<li><code>yumrepo</code>, once <a href=\"http://projects.puppetlabs.com/issues/8758\">#8758</a> is done</li>\n</ul>\n\n<p>Other ideas for new types are:</p>\n\n<ul>\n<li><code>/etc/system</code> types</li>\n</ul>\n\n<h2>Issues</h2>\n\n<p>Please file any issues or suggestions <a href=\"https://github.com/hercules-team/augeasproviders/issues\">on GitHub</a>.</p>\n</section>",
2810
+ "readme": "<section class=\"markdown\"><h1>augeasproviders: alternative Augeas-based providers for Puppet</h1>\n\n<p>This module provides alternative providers for core Puppet types such as\n<code>host</code> and <code>mailalias</code> using the Augeas configuration library. It also adds\nsome of its own types for new functionality.</p>\n\n<p>The advantage of using Augeas over the default Puppet <code>parsedfile</code>\nimplementations is that Augeas will go to great lengths to preserve file\nformatting and comments, while also failing safely when needed.</p>\n\n<p>These providers will hide <em>all</em> of the Augeas commands etc., you don&#39;t need to\nknow anything about Augeas to make use of it.</p>\n\n<p>If you want to make changes to config files in your own way, you should use\nthe <code>augeas</code> type directly. For more information about Augeas, see the\n<a href=\"http://augeas.net\">web site</a> or the\n<a href=\"http://projects.puppetlabs.com/projects/puppet/wiki/Puppet_Augeas\">Puppet/Augeas</a>\nwiki page.</p>\n\n<h2>Types and providers</h2>\n\n<p>The following builtin types have an Augeas-based provider implemented:</p>\n\n<ul>\n<li><code>host</code></li>\n<li><code>mailalias</code></li>\n</ul>\n\n<p>The following other types have a provider implemented:</p>\n\n<ul>\n<li><code>mounttab</code> from <a href=\"http://forge.puppetlabs.com/puppetlabs/mount_providers\">puppetlabs-mount_providers</a></li>\n</ul>\n\n<p>The module adds the following new types:</p>\n\n<ul>\n<li><code>apache_setenv</code> for updating SetEnv entries in Apache HTTP Server configs</li>\n<li><code>kernel_parameter</code> for adding kernel parameters to GRUB Legacy or GRUB 2 configs</li>\n<li><code>nrpe_command</code> for setting command entries in Nagios NRPE&#39;s <code>nrpe.cfg</code></li>\n<li><code>pg_hba</code> for PostgreSQL&#39;s <code>pg_hba.conf</code> entries</li>\n<li><code>puppet_auth</code> for authentication rules in Puppet&#39;s <code>auth.conf</code></li>\n<li><code>shellvar</code> for shell variables in <code>/etc/sysconfig</code> or <code>/etc/default</code> etc.</li>\n<li><code>sshd_config</code> for setting configuration entries in OpenSSH&#39;s <code>sshd_config</code></li>\n<li><code>sshd_config_subsystem</code> for setting subsystem entries in OpenSSH&#39;s <code>sshd_config</code></li>\n<li><code>sysctl</code> for entries inside Linux&#39;s sysctl.conf</li>\n<li><code>syslog</code> for entries inside syslog.conf</li>\n</ul>\n\n<p>Lots of examples are provided in the accompanying documentation (see\n<code>docs/examples.html</code>) and are also published <a href=\"http://augeasproviders.com/documentation/examples.html\">on the web site</a>.\nIf this is a git checkout, you will need to run <code>make</code> in docs/ to generate the\nHTML pages.</p>\n\n<p>Type documentation can be generated with <code>puppet doc -r type</code> or viewed on the\n<a href=\"http://forge.puppetlabs.com/domcleal/augeasproviders\">Puppet Forge page</a>.</p>\n\n<p>For builtin types and mounttab, the default provider will automatically become\nthe <code>augeas</code> provider once the module is installed. This can be changed back\nto <code>parsed</code> where necessary.</p>\n\n<h2>Requirements</h2>\n\n<p>Ensure both Augeas and ruby-augeas 0.3.0+ bindings are installed and working as\nnormal.</p>\n\n<p>See <a href=\"http://projects.puppetlabs.com/projects/puppet/wiki/Puppet_Augeas#Pre-requisites\">Puppet/Augeas pre-requisites</a>.</p>\n\n<h2>Installing</h2>\n\n<p>On Puppet 2.7.14+, the module can be installed easily (<a href=\"http://docs.puppetlabs.com/puppet/2.7/reference/modules_installing.html\">documentation</a>):</p>\n\n<pre><code>puppet module install domcleal/augeasproviders\n</code></pre>\n\n<p>You may see an error similar to this on Puppet 2.x (<a href=\"http://projects.puppetlabs.com/issues/13858\">#13858</a>):</p>\n\n<pre><code>Error 400 on SERVER: Puppet::Parser::AST::Resource failed with error ArgumentError: Invalid resource type `kernel_parameter` at ...\n</code></pre>\n\n<p>Ensure the module is present in your primary Puppet server&#39;s own environment (it doesn&#39;t\nhave to use it) and that the primary Puppet server has pluginsync enabled. Run the agent on\nthe primary Puppet server to cause the custom types to be synced to its local libdir\n(<code>primary Puppet server --configprint libdir</code>) and then restart the primary Puppet server so it\nloads them.</p>\n\n<h2>Planned</h2>\n\n<p>The following builtin types have Augeas-based providers planned:</p>\n\n<ul>\n<li><code>ssh_authorized_key</code></li>\n<li><code>port</code>, once <a href=\"http://projects.puppetlabs.com/issues/5660\">#5660</a> is done</li>\n<li><code>yumrepo</code>, once <a href=\"http://projects.puppetlabs.com/issues/8758\">#8758</a> is done</li>\n</ul>\n\n<p>Other ideas for new types are:</p>\n\n<ul>\n<li><code>/etc/system</code> types</li>\n</ul>\n\n<h2>Issues</h2>\n\n<p>Please file any issues or suggestions <a href=\"https://github.com/hercules-team/augeasproviders/issues\">on GitHub</a>.</p>\n</section>",
2811
2811
  "changelog": "<section class=\"plaintext\"><pre># Changelog\n\n## 1.0.2\n* no change, re-release for bad tarball checksum\n\n## 1.0.1\n* sysctl: fix quoting issue when applying settings, fixes #53 (Jeremy Kitchen)\n* sysctl: fix apply=&gt;false, was always running, fixes #56 (Trey Dockendorf)\n* all: use augeas&#x2F;lenses&#x2F; from Puppet&#x27;s pluginsync libdir (Craig Dunn)\n* sshd: create array entries before Match groups\n\n## 1.0.0\n* devel: AugeasProviders::Provider has gained a large number of helper methods\n for writing providers\n* all: providers completely refactored to use AugeasProviders::Provider helpers\n* sysctl: ignore whitespace inside values during comparisons, fixes #50\n* shellvar: fix require to work for puppet apply&#x2F;specs\n\n## 0.7.0\n* pg_hba: new type for managing PostgreSQL pg_hba.conf entries\n* shellvar: add support for array values\n* sysctl: add &#x27;apply&#x27; parameter to change live kernel value (default: true)\n* sysctl: add &#x27;val&#x27; parameter alias for duritong&#x2F;puppet-sysctl compatibility\n* mailalias: fix quoting of pipe recipients, fixes #41\n* devel: test Ruby 2.0\n\n## 0.6.1\n* syslog: add rsyslog provider variant, requires Augeas 1.0.0\n* all: fix ruby-augeas 0.3.0 compatibility on Ruby 1.9\n* all: don&#x27;t throw error when target file doesn&#x27;t already exist\n* kernel_parameter&#x2F;grub: ensure partially present parameters will be removed\n\n## 0.6.0\n* apache_setenv: new type for managing Apache HTTP SetEnv config options (Endre\n Karlson)\n* puppet_auth: new type for managing Puppet&#x27;s auth.conf file\n* shellvar: new type for managing &#x2F;etc&#x2F;{default,sysconfig}\n* kernel_parameter: use EFI GRUB legacy config if present\n* devel: replaced librarian-puppet with puppetlabs_spec_helper&#x27;s .fixtures.yml\n* devel: use augparse --notypecheck for improved speed\n\n## 0.5.3\n* sshd_config: reinstate separate name parameter\n* docs: add sshd_config multiple keys example, fixes #27\n\n## 0.5.2\n* sshd_config, sysctl: create entries after commented out entry\n* host, mailalias: implement prefetch for performance\n* sshd_config: remove separate name parameter, only use key as namevar\n* docs: remove symlinks from docs&#x2F;, fixes #25, improve README, rename LICENSE\n* devel: improve idempotence logging\n* devel: update to Augeas 1.0.0, test Puppet 3.1\n\n## 0.5.1\n* all: fix library loading issue with `puppet apply`\n\n## 0.5.0\n* kernel_parameter: new type for managing kernel arguments in GRUB Legacy and\n GRUB 2 configs\n* docs: documentation index, existing articles and numerous examples for all\n providers added\n* docs: URLs changed to GitHub hercules-team organisation\n* devel: files existence stubbed out in tests\n* devel: Augeas submodule changed to point to GitHub\n* devel: specs compatibility with 2.7.20 fixed\n\n## 0.4.0\n* nrpe_command: new type for managing NRPE settings (Christian Kaenzig)\n* syslog: new type for managing (r)syslog destinations (Raphaël Pinson)\n\n## 0.3.1\n* all: fix missing require causing load errors\n* sshd_config: store multiple values for a setting as multiple entries, e.g.\n multiple ListenAddress lines (issue #13)\n* docs: minor fixes\n* devel: test Puppet 3.0\n\n## 0.3.0\n* sysctl: new type for managing sysctl.conf entries\n* mounttab: add Solaris &#x2F;etc&#x2F;vfstab support\n* mounttab: fix options property idempotency\n* mounttab: fix key=value options in fstab instances\n* host: fix comment and host_aliases properties idempotency\n* all: log &#x2F;augeas&#x2F;&#x2F;error output when unable to save\n* packaging: hard mount_providers dependency removed\n* devel: augparse used to test providers against expected tree\n* devel: augeas submodule included for testing against latest lenses\n\n## 0.2.0\n* mounttab: new provider for mounttab type in puppetlabs-mount_providers\n (supports fstab only, no vfstab), mount_providers now a dependency\n* devel: librarian-puppet used to install Puppet module dependencies\n\n## 0.1.1\n* host: fix host_aliases param support pre-2.7\n* sshd_config: find Match groups in instances&#x2F;ralsh\n* sshd_config: support arrays for ((Allow|Deny)(Groups|Users))|AcceptEnv|MACs\n* sshd_config_subsystem: new type and provider (Raphaël Pinson)\n* devel: use Travis CI, specify deps via Gemfile + bundler\n* specs: fixes for 0.25 and 2.6 series\n\n## 0.1.0\n* host: fix pre-2.7 compatibility when without comment property\n* sshd_config: new type and provider (Raphaël Pinson)\n* all: fix provider confine to enable use in same run as ruby-augeas install\n (Puppet #14822)\n* devel: refactor common augopen code into utility class\n* specs: fix both Ruby 1.8 and mocha 0.12 compatibility\n\n## 0.0.4\n* host: fix handling of multiple host_aliases\n* host: fix handling of empty comment string, now removes comment\n* host: fix missing ensure and comment parameters in puppet resource, only\n return aliases if present\n* mailalias: fix missing ensure parameter in puppet resource\n* specs: added comprehensive test harness for both providers\n\n## 0.0.3\n* all: add instances methods to enable `puppet resource`\n\n## 0.0.2\n* mailalias: new provider added for builtin mailalias type\n\n## 0.0.1\n* host: new provider added for builtin host type\n</pre></section>",
2812
2812
  "license": "<section class=\"plaintext\"><pre>augeasproviders: alternative Augeas-based providers for Puppet\n\nCopyright (c) 2012 Dominic Cleal\n\nLicensed under the Apache License, Version 2.0 (the &quot;License&quot;);\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp:&#x2F;&#x2F;www.apache.org&#x2F;licenses&#x2F;LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an &quot;AS IS&quot; BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n</pre></section>",
2813
2813
  "created_at": "2013-10-28 11:15:54 -0700",
@@ -3075,7 +3075,7 @@
3075
3075
  "file_size": 25420,
3076
3076
  "file_md5": "6fcb2d26a6ccc8c59c9df0c520563a87",
3077
3077
  "downloads": 300,
3078
- "readme": "<section class=\"markdown\"><h1>Puppet-Maven</h1>\n\n<p>A Puppet recipe for Apache Maven, to download artifacts from a Maven repository</p>\n\n<p>Uses <a href=\"http://maven.apache.org\">Apache Maven</a> command line to download the artifacts.</p>\n\n<h2>Building and Installing the Module</h2>\n\n<p>To build the module for installing in your Puppet master:</p>\n\n<pre lang=\"sh\"><code>gem install puppet-module\ngit clone git://github.com/maestrodev/puppet-maven.git\ncd puppet-maven\npuppet module build\npuppet module install pkg/maestrodev-maven-1.0.1.tar.gz\n</code></pre>\n\n<p>Of course, you can also clone the repository straight into <code>/etc/puppet/modules/maven</code> as well.</p>\n\n<h2>Developing and Testing the Module</h2>\n\n<p>If you are developing the module, it can be built using <code>rake</code>:</p>\n\n<pre lang=\"sh\"><code>gem install bundler\nbundle\nrake spec\nrake spec:system\n</code></pre>\n\n<h2>Usage</h2>\n\n<pre lang=\"puppet\"><code> maven { &quot;/tmp/myfile&quot;:\n id =&gt; &quot;groupId:artifactId:version:packaging:classifier&quot;,\n repos =&gt; [&quot;id::layout::http://repo.acme.com&quot;,&quot;http://repo2.acme.com&quot;],\n }\n</code></pre>\n\n<p>or</p>\n\n<pre lang=\"puppet\"><code> maven { &quot;/tmp/myfile&quot;:\n groupid =&gt; &quot;org.apache.maven&quot;,\n artifactid =&gt; &quot;maven-core&quot;,\n version =&gt; &quot;3.0.5&quot;,\n packaging =&gt; &quot;jar&quot;,\n classifier =&gt; &quot;sources&quot;,\n repos =&gt; [&quot;id::layout::http://repo.acme.com&quot;,&quot;http://repo2.acme.com&quot;],\n }\n</code></pre>\n\n<h3>ensure</h3>\n\n<p><code>ensure</code> may be one of two values:</p>\n\n<ul>\n<li><code>present</code> (the default) -- the specified maven artifact is downloaded when no file exists\nat <code>path</code> (or <code>name</code> if no path is specified.) This is probably makes\nsense when the specified maven artifact refers to a released (non-SNAPSHOT)\nartifact.</li>\n<li> <code>latest</code> -- if value of version is <code>RELEASE</code>, <code>LATEST</code>, or a SNAPSHOT the repository\nis queried for an updated artifact. If an updated artifact is found the file\nat <code>path</code> is replaced.</li>\n</ul>\n\n<h3>MAVEN_OPTS Precedence</h3>\n\n<p>Values set in <code>maven_opts</code> will be <em>prepended</em> to any existing\n<code>MAVEN_OPTS</code> value. This ensures that those already specified will win over\nthose added in <code>mavenrc</code>.</p>\n\n<p>If you would prefer these options to win, instead use:</p>\n\n<pre lang=\"puppet\"><code> maven_opts =&gt; &quot;&quot;,\n mavenrc_additions =&gt; &#39;MAVEN_OPTS=&quot;$MAVEN_OPTS -Xmx1024m&quot;\n</code></pre>\n\n<h2>Examples</h2>\n\n<h3>Setup</h3>\n\n<pre lang=\"puppet\"><code> $central = {\n id =&gt; &quot;myrepo&quot;,\n username =&gt; &quot;myuser&quot;,\n password =&gt; &quot;mypassword&quot;,\n url =&gt; &quot;http://repo.acme.com&quot;,\n mirrorof =&gt; &quot;external:*&quot;, # if you want to use the repo as a mirror, see maven::settings below\n }\n\n $proxy = {\n active =&gt; true, #Defaults to true\n protocol =&gt; &#39;http&#39;, #Defaults to &#39;http&#39;\n host =&gt; &#39;http://proxy.acme.com&#39;,\n username =&gt; &#39;myuser&#39;, #Optional if proxy does not require\n password =&gt; &#39;mypassword&#39;, #Optional if proxy does not require\n nonProxyHosts =&gt; &#39;www.acme.com&#39;, #Optional, provides exceptions to the proxy\n }\n\n # Install Maven\n class { &quot;maven::maven&quot;:\n version =&gt; &quot;3.0.5&quot;, # version to install\n # you can get Maven tarball from a Maven repository instead than from Apache servers, optionally with a user/password\n repo =&gt; {\n #url =&gt; &quot;http://repo.maven.apache.org/maven2&quot;,\n #username =&gt; &quot;&quot;,\n #password =&gt; &quot;&quot;,\n }\n } -&gt;\n\n # Setup a .mavenrc file for the specified user\n maven::environment { &#39;maven-env&#39; : \n user =&gt; &#39;root&#39;,\n # anything to add to MAVEN_OPTS in ~/.mavenrc\n maven_opts =&gt; &#39;-Xmx1384m&#39;, # anything to add to MAVEN_OPTS in ~/.mavenrc\n maven_path_additions =&gt; &quot;&quot;, # anything to add to the PATH in ~/.mavenrc\n\n } -&gt;\n\n # Create a settings.xml with the repo credentials\n maven::settings { &#39;maven-user-settings&#39; :\n mirrors =&gt; [$central], # mirrors entry in settings.xml, uses id, url, mirrorof from the hash passed\n servers =&gt; [$central], # servers entry in settings.xml, uses id, username, password from the hash passed\n proxies =&gt; [$proxy], # proxies entry in settings.xml, active, protocol, host, username, password, nonProxyHosts\n user =&gt; &#39;maven&#39;,\n }\n\n # defaults for all maven{} declarations\n Maven {\n user =&gt; &quot;maven&quot;, # you can make puppet run Maven as a specific user instead of root, useful to share Maven settings and local repository\n group =&gt; &quot;maven&quot;, # you can make puppet run Maven as a specific group\n repos =&gt; &quot;http://repo.maven.apache.org/maven2&quot;\n }\n</code></pre>\n\n<h2>Downloading artifacts</h2>\n\n<pre lang=\"puppet\"><code> maven { &quot;/tmp/maven-core-3.0.5.jar&quot;:\n id =&gt; &quot;org.apache.maven:maven-core:3.0.5:jar&quot;,\n repos =&gt; [&quot;central::default::http://repo.maven.apache.org/maven2&quot;,&quot;http://mirrors.ibiblio.org/pub/mirrors/maven2&quot;],\n }\n\n maven { &quot;/tmp/maven-core-3.0.5-sources.jar&quot;:\n groupid =&gt; &quot;org.apache.maven&quot;,\n artifactid =&gt; &quot;maven-core&quot;,\n version =&gt; &quot;3.0.5&quot;,\n classifier =&gt; &quot;sources&quot;,\n }\n</code></pre>\n\n<h2>Buildr version</h2>\n\n<p>Initially there was an <a href=\"http://buildr.apache.org\">Apache Buildr</a> version, but it required to have Buildr installed before running Puppet and you would need to <a href=\"http://docs.puppetlabs.com/guides/plugins_in_modules.html#enabling-pluginsync\">enable pluginsync</a>\nin both master and clients.</p>\n\n<h2>License</h2>\n\n<pre><code> Copyright 2011-2012 MaestroDev\n\n Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an &quot;AS IS&quot; BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n</code></pre>\n\n<h2>Author</h2>\n\n<p>Carlos Sanchez <a href=\"mailto:csanchez@maestrodev.com\">csanchez@maestrodev.com</a>\n<a href=\"http://www.maestrodev.com\">MaestroDev</a>\n2010-03-01</p>\n</section>",
3078
+ "readme": "<section class=\"markdown\"><h1>Puppet-Maven</h1>\n\n<p>A Puppet recipe for Apache Maven, to download artifacts from a Maven repository</p>\n\n<p>Uses <a href=\"http://maven.apache.org\">Apache Maven</a> command line to download the artifacts.</p>\n\n<h2>Building and Installing the Module</h2>\n\n<p>To build the module for installing in your primary Puppet server:</p>\n\n<pre lang=\"sh\"><code>gem install puppet-module\ngit clone git://github.com/maestrodev/puppet-maven.git\ncd puppet-maven\npuppet module build\npuppet module install pkg/maestrodev-maven-1.0.1.tar.gz\n</code></pre>\n\n<p>Of course, you can also clone the repository straight into <code>/etc/puppet/modules/maven</code> as well.</p>\n\n<h2>Developing and Testing the Module</h2>\n\n<p>If you are developing the module, it can be built using <code>rake</code>:</p>\n\n<pre lang=\"sh\"><code>gem install bundler\nbundle\nrake spec\nrake spec:system\n</code></pre>\n\n<h2>Usage</h2>\n\n<pre lang=\"puppet\"><code> maven { &quot;/tmp/myfile&quot;:\n id =&gt; &quot;groupId:artifactId:version:packaging:classifier&quot;,\n repos =&gt; [&quot;id::layout::http://repo.acme.com&quot;,&quot;http://repo2.acme.com&quot;],\n }\n</code></pre>\n\n<p>or</p>\n\n<pre lang=\"puppet\"><code> maven { &quot;/tmp/myfile&quot;:\n groupid =&gt; &quot;org.apache.maven&quot;,\n artifactid =&gt; &quot;maven-core&quot;,\n version =&gt; &quot;3.0.5&quot;,\n packaging =&gt; &quot;jar&quot;,\n classifier =&gt; &quot;sources&quot;,\n repos =&gt; [&quot;id::layout::http://repo.acme.com&quot;,&quot;http://repo2.acme.com&quot;],\n }\n</code></pre>\n\n<h3>ensure</h3>\n\n<p><code>ensure</code> may be one of two values:</p>\n\n<ul>\n<li><code>present</code> (the default) -- the specified maven artifact is downloaded when no file exists\nat <code>path</code> (or <code>name</code> if no path is specified.) This is probably makes\nsense when the specified maven artifact refers to a released (non-SNAPSHOT)\nartifact.</li>\n<li> <code>latest</code> -- if value of version is <code>RELEASE</code>, <code>LATEST</code>, or a SNAPSHOT the repository\nis queried for an updated artifact. If an updated artifact is found the file\nat <code>path</code> is replaced.</li>\n</ul>\n\n<h3>MAVEN_OPTS Precedence</h3>\n\n<p>Values set in <code>maven_opts</code> will be <em>prepended</em> to any existing\n<code>MAVEN_OPTS</code> value. This ensures that those already specified will win over\nthose added in <code>mavenrc</code>.</p>\n\n<p>If you would prefer these options to win, instead use:</p>\n\n<pre lang=\"puppet\"><code> maven_opts =&gt; &quot;&quot;,\n mavenrc_additions =&gt; &#39;MAVEN_OPTS=&quot;$MAVEN_OPTS -Xmx1024m&quot;\n</code></pre>\n\n<h2>Examples</h2>\n\n<h3>Setup</h3>\n\n<pre lang=\"puppet\"><code> $central = {\n id =&gt; &quot;myrepo&quot;,\n username =&gt; &quot;myuser&quot;,\n password =&gt; &quot;mypassword&quot;,\n url =&gt; &quot;http://repo.acme.com&quot;,\n mirrorof =&gt; &quot;external:*&quot;, # if you want to use the repo as a mirror, see maven::settings below\n }\n\n $proxy = {\n active =&gt; true, #Defaults to true\n protocol =&gt; &#39;http&#39;, #Defaults to &#39;http&#39;\n host =&gt; &#39;http://proxy.acme.com&#39;,\n username =&gt; &#39;myuser&#39;, #Optional if proxy does not require\n password =&gt; &#39;mypassword&#39;, #Optional if proxy does not require\n nonProxyHosts =&gt; &#39;www.acme.com&#39;, #Optional, provides exceptions to the proxy\n }\n\n # Install Maven\n class { &quot;maven::maven&quot;:\n version =&gt; &quot;3.0.5&quot;, # version to install\n # you can get Maven tarball from a Maven repository instead than from Apache servers, optionally with a user/password\n repo =&gt; {\n #url =&gt; &quot;http://repo.maven.apache.org/maven2&quot;,\n #username =&gt; &quot;&quot;,\n #password =&gt; &quot;&quot;,\n }\n } -&gt;\n\n # Setup a .mavenrc file for the specified user\n maven::environment { &#39;maven-env&#39; : \n user =&gt; &#39;root&#39;,\n # anything to add to MAVEN_OPTS in ~/.mavenrc\n maven_opts =&gt; &#39;-Xmx1384m&#39;, # anything to add to MAVEN_OPTS in ~/.mavenrc\n maven_path_additions =&gt; &quot;&quot;, # anything to add to the PATH in ~/.mavenrc\n\n } -&gt;\n\n # Create a settings.xml with the repo credentials\n maven::settings { &#39;maven-user-settings&#39; :\n mirrors =&gt; [$central], # mirrors entry in settings.xml, uses id, url, mirrorof from the hash passed\n servers =&gt; [$central], # servers entry in settings.xml, uses id, username, password from the hash passed\n proxies =&gt; [$proxy], # proxies entry in settings.xml, active, protocol, host, username, password, nonProxyHosts\n user =&gt; &#39;maven&#39;,\n }\n\n # defaults for all maven{} declarations\n Maven {\n user =&gt; &quot;maven&quot;, # you can make puppet run Maven as a specific user instead of root, useful to share Maven settings and local repository\n group =&gt; &quot;maven&quot;, # you can make puppet run Maven as a specific group\n repos =&gt; &quot;http://repo.maven.apache.org/maven2&quot;\n }\n</code></pre>\n\n<h2>Downloading artifacts</h2>\n\n<pre lang=\"puppet\"><code> maven { &quot;/tmp/maven-core-3.0.5.jar&quot;:\n id =&gt; &quot;org.apache.maven:maven-core:3.0.5:jar&quot;,\n repos =&gt; [&quot;central::default::http://repo.maven.apache.org/maven2&quot;,&quot;http://mirrors.ibiblio.org/pub/mirrors/maven2&quot;],\n }\n\n maven { &quot;/tmp/maven-core-3.0.5-sources.jar&quot;:\n groupid =&gt; &quot;org.apache.maven&quot;,\n artifactid =&gt; &quot;maven-core&quot;,\n version =&gt; &quot;3.0.5&quot;,\n classifier =&gt; &quot;sources&quot;,\n }\n</code></pre>\n\n<h2>Buildr version</h2>\n\n<p>Initially there was an <a href=\"http://buildr.apache.org\">Apache Buildr</a> version, but it required to have Buildr installed before running Puppet and you would need to <a href=\"http://docs.puppetlabs.com/guides/plugins_in_modules.html#enabling-pluginsync\">enable pluginsync</a>\nin both primary Puppet server and clients.</p>\n\n<h2>License</h2>\n\n<pre><code> Copyright 2011-2012 MaestroDev\n\n Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an &quot;AS IS&quot; BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n</code></pre>\n\n<h2>Author</h2>\n\n<p>Carlos Sanchez <a href=\"mailto:csanchez@maestrodev.com\">csanchez@maestrodev.com</a>\n<a href=\"http://www.maestrodev.com\">MaestroDev</a>\n2010-03-01</p>\n</section>",
3079
3079
  "changelog": null,
3080
3080
  "license": "<section class=\"plaintext\"><pre>\n Apache License\n Version 2.0, January 2004\n http:&#x2F;&#x2F;www.apache.org&#x2F;licenses&#x2F;\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n &quot;License&quot; shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n &quot;Licensor&quot; shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n &quot;Legal Entity&quot; shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n &quot;control&quot; means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n &quot;Source&quot; form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n &quot;Object&quot; form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n &quot;Work&quot; shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n &quot;Derivative Works&quot; shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n &quot;Contribution&quot; shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, &quot;submitted&quot;\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as &quot;Not a Contribution.&quot;\n\n &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a &quot;NOTICE&quot; text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and&#x2F;or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;\n replaced with your own identifying information. (Don&#x27;t include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same &quot;printed page&quot; as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http:&#x2F;&#x2F;www.apache.org&#x2F;licenses&#x2F;LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an &quot;AS IS&quot; BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n</pre></section>",
3081
3081
  "created_at": "2013-12-20 09:58:35 -0800",
@@ -3148,4 +3148,4 @@
3148
3148
  "issues_url": "http://github.com/maestrodev/puppet-maven/issues"
3149
3149
  }
3150
3150
  ]
3151
- }
3151
+ }