StartinginApache2.2.16,HTTPDsupports[FallbackResource](https://httpd.apache.org/docs/current/mod/mod_dir.html#fallbackresource), a simple replacement for common RewriteRules.
Thissetstheserverdefaultforthe[`AllowEncodedSlashes`declaration](http://httpd.apache.org/docs/current/mod/core.html#allowencodedslashes) which modifies the responses to URLs with `\` and `/` characters. The default is undefined, which omits the declaration from the server configuration and select the Apache default setting of `Off`. Allowed values are: `on`, `off` or `nodecode`.
Setsthedefaultcertificaterevocationchecklevelviathe[SSLCARevocationCheckdirective](http://httpd.apache.org/docs/current/mod/mod_ssl.html#sslcarevocationcheck), which is automatically set to 'undef'. This default works out of the box but must be specified when using CRLs in production. Only applicable to Apache 2.4 or higher, the value is ignored on older versions.
Changesthelocationofthedefault[Documentroot](https://httpd.apache.org/docs/current/mod/core.html#documentroot). Defaults to '/var/www/html' on RedHat, '/var/www' on Debian, '/usr/local/www/apache22/data' on FreeBSD, and '/var/www/localhost/htdocs' on Gentoo.
Configuresatrailingfooterlineunderserver-generateddocuments.Moreinformationabout[ServerSignature](http://httpd.apache.org/docs/current/mod/core.html#serversignature). Defaults to 'On'.
#####`server_tokens`
ControlshowmuchinformationApachesendstothebrowseraboutitselfandtheoperatingsystem.Moreinformationabout[ServerTokens](http://httpd.apache.org/docs/current/mod/core.html#servertokens). Defaults to 'OS'.
ControlshowTRACErequestsperRFC2616arehandled.Moreinformationabout[TraceEnable](http://httpd.apache.org/docs/current/mod/core.html#traceenable). Defaults to 'On'.
Installsthe[Shibboleth](http://shibboleth.net/) module for Apache which allows the use of SAML2 Single-Sign-On (SSO) authentication by Shibboleth Identity Providers and Shibboleth Federations. This class only installs and configures the Apache components of a Shibboleth Service Provider (a web application that consumes Shibboleth SSO identities). The Shibboleth configuration can be managed manually, with Puppet, or using a [Shibboleth Puppet Module](https://github.com/aethylred/puppet-shibboleth).
Sets[AddDefaultCharset](http://httpd.apache.org/docs/current/mod/core.html#adddefaultcharset), a default value for the media charset, which is added to text/plain and text/html responses.
PassesalistofhashestothevhosttocreateAlias,AliasMatch,ScriptAliasorScriptAliasMatchdirectivesasperthe[mod_aliasdocumentation](http://httpd.apache.org/docs/current/mod/mod_alias.html). These hashes are formatted as follows:
```puppet
aliases=>[
{aliasmatch=>'^/image/(.*)\.jpg$',
path=>'/files/jpg.images/$1.jpg',
},
{alias=>'/image',
path=>'/ftp/pub/image',
},
{scriptaliasmatch=>'^/cgi-bin(.*)',
path=>'/usr/local/share/cgi-bin$1',
},
{scriptalias=>'/nagios/cgi-bin/',
path=>'/usr/lib/nagios/cgi-bin/',
},
{alias=>'/nagios',
path=>'/usr/share/nagios/html',
},
],
```
For`alias`,`aliasmatch`,`scriptalias`and`scriptaliasmatch`towork,eachneedsacorrespondingcontext,suchas`<Directory/path/to/directory>`or`<Location/some/location/here>`.Thedirectivesarecreatedintheorderspecifiedinthe`aliases`parameter.Asdescribedinthe[`mod_alias`documentation](http://httpd.apache.org/docs/current/mod/mod_alias.html), more specific `alias`, `aliasmatch`, `scriptalias` or `scriptaliasmatch` parameters should come before the more general ones to avoid shadowing.
*Note:*If`apache::mod::passenger`isloadedand`PassengerHighPerformance=>true`isset,thenAliasmighthaveissueshonoringthe`PassengerEnabled=>off`statement.See[thisarticle](http://www.conandalton.net/2010/06/passengerenabled-off-not-working.html) for details.
#####`allow_encoded_slashes`
Thissetsthe[`AllowEncodedSlashes`declaration](http://httpd.apache.org/docs/current/mod/core.html#allowencodedslashes) for the vhost, overriding the server default. This modifies the vhost responses to URLs with `\` and `/` characters. The default is undefined, which omits the declaration from the server configuration and select the Apache default setting of `Off`. Allowed values are: `on`, `off` or `nodecode`.
Setsthelistofresourcestolookforwhenaclientrequestsanindexofthedirectorybyspecifyinga'/'attheendofthedirectoryname.[DirectoryIndex](http://httpd.apache.org/docs/current/mod/mod_dir.html#directoryindex) has more information. Defaults to 'undef'.
Alistofhasheswhichcanbeusedtooverridethe[ErrorDocument](https://httpd.apache.org/docs/current/mod/core.html#errordocument) settings for this vhost. Defaults to '[]'. Example:
Setsthe[FallbackResource](http://httpd.apache.org/docs/current/mod/mod_dir.html#fallbackresource) directive, which specifies an action to take for any URL that doesn't map to anything in your filesystem and would otherwise return 'HTTP 404 (Not Found)'. Valid values must either begin with a / or be 'disabled'. Defaults to 'undef'.
#####`headers`
Addslinestoreplace,merge,orremoveresponseheaders.See[Header](http://httpd.apache.org/docs/current/mod/mod_headers.html#header) for more information. Can be an array. Defaults to 'undef'.
Enablesan[IP-based](http://httpd.apache.org/docs/current/vhosts/ip-based.html) vhost. This parameter inhibits the creation of a NameVirtualHost directive, since those are used to funnel requests to name-based vhosts. Defaults to 'false'.
#####`itk`
Configures[ITK](http://mpm-itk.sesse.net/) in a hash. Keys can be:
Setsthe[ProxyPreserveHostDirective](http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypreservehost). true Enables the Host: line from an incoming request to be proxied to the host instead of hostname . false sets this option to off (default).
#####`proxy_error_override`
Setsthe[ProxyErrorOverrideDirective](http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxyerroroverride). This directive controls whether apache should override error pages for proxied content. This option is off by default.
#####`options`
Setsthe[Options](http://httpd.apache.org/docs/current/mod/core.html#options) for the specified virtual host. Defaults to '['Indexes','FollowSymLinks','MultiViews']', as demonstrated below:
Setstheoverridesforthespecifiedvirtualhost.Acceptsanarrayof[AllowOverride](http://httpd.apache.org/docs/current/mod/core.html#allowoverride) arguments. Defaults to '[none]'.
#####`passenger_app_root`
Sets[PassengerRoot](https://www.phusionpassenger.com/documentation/Users%20guide%20Apache.html#PassengerAppRoot), the location of the Passenger application root if different from the DocumentRoot.
#####`passenger_app_env`
Sets[PassengerAppEnv](https://www.phusionpassenger.com/documentation/Users%20guide%20Apache.html#PassengerAppEnv), the environment for the Passenger application. If not specifies, defaults to the global setting or 'production'.
#####`passenger_ruby`
Sets[PassengerRuby](https://www.phusionpassenger.com/documentation/Users%20guide%20Apache.html#PassengerRuby) on this virtual host, the Ruby interpreter to use for the application.
#####`passenger_min_instances`
Sets[PassengerMinInstances](https://www.phusionpassenger.com/documentation/Users%20guide%20Apache.html#PassengerMinInstances), the minimum number of application processes to run.
#####`passenger_start_timeout`
Sets[PassengerStartTimeout](https://www.phusionpassenger.com/documentation/Users%20guide%20Apache.html#_passengerstarttimeout_lt_seconds_gt), the timeout for the application startup.
#####`passenger_pre_start`
Sets[PassengerPreStart](https://www.phusionpassenger.com/documentation/Users%20guide%20Apache.html#PassengerPreStart), the URL of the application if pre-starting is required.
#####`php_flags&values`
Allowsper-vhostsetting[`php_value`sor`php_flag`s](http://php.net/manual/en/configuration.changes.php). These flags or values can be overwritten by a user or an application. Defaults to '{}'.
#####`php_admin_flags&values`
Allowsper-vhostsetting[`php_admin_value`sor`php_admin_flag`s](http://php.net/manual/en/configuration.changes.php). These flags or values cannot be overwritten by a user or an application. Defaults to '{}'.
Specifiesthedestinationaddressofa[ProxyPass](http://httpd.apache.org/docs/current/mod/mod_proxy.html#proxypass) configuration. Defaults to 'undef'.
#####`proxy_pass`
Specifiesanarrayof`path=>URI`fora[ProxyPass](http://httpd.apache.org/docs/current/mod/mod_proxy.html#proxypass) configuration. Defaults to 'undef'. Optionally parameters can be added as an array.
Thisdirectiveisequivalenttoproxy_dest,buttakesregularexpressions,see[ProxyPassMatch](http://httpd.apache.org/docs/current/mod/mod_proxy.html#proxypassmatch) for details.
#####`proxy_dest_reverse_match`
AllowsyoutopassaProxyPassReverseif`proxy_dest_match`isspecified.See[ProxyPassReverse](http://httpd.apache.org/docs/current/mod/mod_proxy.html#proxypassreverse) for details.
#####`proxy_pass_match`
Thisdirectiveisequivalenttoproxy_pass,buttakesregularexpressions,see[ProxyPassMatch](http://httpd.apache.org/docs/current/mod/mod_proxy.html#proxypassmatch) for details.
#####`rack_base_uris`
Specifiestheresourceidentifiersforarackconfiguration.Thefilepathsspecifiedarelistedasrackapplicationrootsfor[PhusionPassenger](http://www.modrails.com/documentation/Users%20guide%20Apache.html#_railsbaseuri_and_rackbaseuri) in the _rack.erb template. Defaults to 'undef'.
Modifiescollected[requestheaders](http://httpd.apache.org/docs/current/mod/mod_headers.html#requestheader) in various ways, including adding additional request headers, removing request headers, etc. Defaults to 'undef'.
Refertothe[`mod_rewrite`documentation](http://httpd.apache.org/docs/current/mod/mod_rewrite.html) for more details on what is possible with rewrite rules and conditions.
PassesanarrayofhashestothevhosttocreateeitherScriptAliasorScriptAliasMatchstatementsasperthe[`mod_alias`documentation](http://httpd.apache.org/docs/current/mod/mod_alias.html). These hashes are formatted as follows:
Setsupavirtualhostwithawildcardaliassubdomainmappedtoadirectorywiththesamename.Forexample,'http://example.com' would map to '/var/www/example.com'. Defaults to 'false'.
`wsgi_daemon_process`setsthenameoftheWSGIdaemon.Itisahash,accepting[thesekeys](http://modwsgi.readthedocs.org/en/latest/configuration-directives/WSGIDaemonProcess.html), and it defaults to 'undef'.
`wsgi_pass_authorization`theWSGIapplicationhandlesauthorisationinsteadofApachewhensetto'On'.Formoreinformationsee[here](http://modwsgi.readthedocs.org/en/latest/configuration-directives/WSGIPassAuthorization.html). Defaults to 'undef' where apache sets the defaults setting to 'Off'.
The`directories`parameterwithinthe`apache::vhost`classpassesanarrayofhashestothevhosttocreate[Directory](http://httpd.apache.org/docs/current/mod/core.html#directory), [File](http://httpd.apache.org/docs/current/mod/core.html#files), and [Location](http://httpd.apache.org/docs/current/mod/core.html#location) directive blocks. These blocks take the form, '< Directory /path/to/directory>...< /Directory>'.
Sets[AddHandler](http://httpd.apache.org/docs/current/mod/mod_mime.html#addhandler) directives, which map filename extensions to the specified handler. Accepts a list of hashes, with `extensions` serving to list the extensions being managed by the handler, and takes the form: `{ handler => 'handler-name', extensions => ['extension']}`.
Setsan[Allow](http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#allow) directive, which groups authorizations based on hostnames or IPs. **Deprecated:** This parameter is being deprecated due to a change in Apache. It only works with Apache 2.2 and lower. You can use it as a single string for one rule or as an array for more than one.
```puppet
apache::vhost{'sample.example.net':
docroot=>'/path/to/directory',
directories=>[
{path=>'/path/to/directory',
allow=>'fromexample.org',
},
],
}
```
######`allow_override`
Setsthetypesofdirectivesallowedin[.htaccess](http://httpd.apache.org/docs/current/mod/core.html#allowoverride) files. Accepts an array.
```puppet
apache::vhost{'sample.example.net':
docroot=>'/path/to/directory',
directories=>[
{path=>'/path/to/directory',
allow_override=>['AuthConfig','Indexes'],
},
],
}
```
######`auth_basic_authoritative`
Setsthevaluefor[AuthBasicAuthoritative](https://httpd.apache.org/docs/current/mod/mod_auth_basic.html#authbasicauthoritative), which determines whether authorization and authentication are passed to lower level Apache modules.
######`auth_basic_fake`
Setsthevaluefor[AuthBasicFake](http://httpd.apache.org/docs/current/mod/mod_auth_basic.html#authbasicfake), which statically configures authorization credentials for a given directive block.
######`auth_basic_provider`
Setsthevaluefor[AuthBasicProvider](http://httpd.apache.org/docs/current/mod/mod_auth_basic.html#authbasicprovider), which sets the authentication provider for a given location.
######`auth_digest_algorithm`
Setsthevaluefor[AuthDigestAlgorithm](http://httpd.apache.org/docs/current/mod/mod_auth_digest.html#authdigestalgorithm), which selects the algorithm used to calculate the challenge and response hashes.
######`auth_digest_domain`
Setsthevaluefor[AuthDigestDomain](http://httpd.apache.org/docs/current/mod/mod_auth_digest.html#authdigestdomain), which allows you to specify one or more URIs in the same protection space for digest authentication.
######`auth_digest_nonce_lifetime`
Setsthevaluefor[AuthDigestNonceLifetime](http://httpd.apache.org/docs/current/mod/mod_auth_digest.html#authdigestnoncelifetime), which controls how long the server nonce is valid.
######`auth_digest_provider`
Setsthevaluefor[AuthDigestProvider](http://httpd.apache.org/docs/current/mod/mod_auth_digest.html#authdigestprovider), which sets the authentication provider for a given location.
######`auth_digest_qop`
Setsthevaluefor[AuthDigestQop](http://httpd.apache.org/docs/current/mod/mod_auth_digest.html#authdigestqop), which determines the quality-of-protection to use in digest authentication.
######`auth_digest_shmem_size`
Setsthevaluefor[AuthAuthDigestShmemSize](http://httpd.apache.org/docs/current/mod/mod_auth_digest.html#authdigestshmemsize), which defines the amount of shared memory allocated to the server for keeping track of clients.
######`auth_group_file`
Setsthevaluefor[AuthGroupFile](https://httpd.apache.org/docs/current/mod/mod_authz_groupfile.html#authgroupfile), which sets the name of the text file containing the list of user groups for authorization.
######`auth_name`
Setsthevaluefor[AuthName](http://httpd.apache.org/docs/current/mod/mod_authn_core.html#authname), which sets the name of the authorization realm.
Setsthevaluefor[AuthType](http://httpd.apache.org/docs/current/mod/mod_authn_core.html#authtype), which guides the type of user authentication.
######`auth_user_file`
Setsthevaluefor[AuthUserFile](http://httpd.apache.org/docs/current/mod/mod_authn_file.html#authuserfile), which sets the name of the text file containing the users/passwords for authentication.
Setsa[Deny](http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#deny) directive, specifying which hosts are denied access to the server. **Deprecated:** This parameter is being deprecated due to a change in Apache. It only works with Apache 2.2 and lower. You can use it as a single string for one rule or as an array for more than one.
```puppet
apache::vhost{'sample.example.net':
docroot=>'/path/to/directory',
directories=>[
{path=>'/path/to/directory',
deny=>'fromexample.org',
},
],
}
```
######`error_documents`
Anarrayofhashesusedtooverridethe[ErrorDocument](https://httpd.apache.org/docs/current/mod/core.html#errordocument) settings for the directory.
Setsthe[defaultordering](http://httpd.apache.org/docs/current/mod/mod_autoindex.html#indexorderdefault) of the directory index.
```puppet
apache::vhost{'sample.example.net':
docroot=>'/path/to/directory',
directories=>[
{path=>'/path/to/directory',
order=>'Allow,Deny',
index_order_default=>['Descending','Date'],
},
],
}
```
######`index_style_sheet`
Setsthe[IndexStyleSheet](http://httpd.apache.org/docs/current/mod/mod_autoindex.html#indexstylesheet) which adds a CSS stylesheet to the directory index.
SetstheorderofprocessingAllowandDenystatementsasper[Apachecoredocumentation](http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#order). **Deprecated:** This parameter is being deprecated due to a change in Apache. It only works with Apache 2.2 and lower.
```puppet
apache::vhost{'sample.example.net':
docroot=>'/path/to/directory',
directories=>[
{path=>'/path/to/directory',
order=>'Allow,Deny',
},
],
}
```
######`passenger_enabled`
Setsthevalueforthe[PassengerEnabled](http://www.modrails.com/documentation/Users%20guide%20Apache.html#PassengerEnabled) directory to 'on' or 'off'. Requires `apache::mod::passenger` to be included.
```puppet
apache::vhost{'sample.example.net':
docroot=>'/path/to/directory',
directories=>[
{path=>'/path/to/directory',
passenger_enabled=>'on',
},
],
}
```
*Note:*Beawarethatthereisan[issue](http://www.conandalton.net/2010/06/passengerenabled-off-not-working.html) using the PassengerEnabled directive with the PassengerHighPerformance directive.
Setsa`Satisfy`directiveasperthe[ApacheCoredocumentation](http://httpd.apache.org/docs/2.2/mod/core.html#satisfy). **Deprecated:** This parameter is being deprecated due to a change in Apache. It only works with Apache 2.2 and lower.
```puppet
apache::vhost{'sample.example.net':
docroot=>'/path/to/directory',
directories=>[
{path=>'/path/to/directory',
satisfy=>'Any',
}
],
}
```
######`sethandler`
Setsa`SetHandler`directiveasperthe[ApacheCoredocumentation](http://httpd.apache.org/docs/2.2/mod/core.html#sethandler). An example:
Allowsanvalidcontentsettingtobesetoralteredfortheapplicationrequest.Thiscommandtakestwoparameters,thenameofthecontentsetting,andthevaluetosetitto.ChecktheShibboleth[contentsettingdocumentation](https://wiki.shibboleth.net/confluence/display/SHIB2/NativeSPContentSettings) for valid settings. This key is disabled if `apache::mod::shib` is not defined. Check the [`mod_shib` documentation](https://wiki.shibboleth.net/confluence/display/SHIB2/NativeSPApacheConfig#NativeSPApacheConfig-Server/VirtualHostOptions) for more details.
```puppet
apache::vhost{'secure.example.net':
docroot=>'/path/to/directory',
directories=>[
{path=>'/path/to/directory',
shib_require_setting=>'requiresession1',
shib_use_headers=>'On',
},
],
}
```
######`shib_use_headers`
Whensetto'On'thisturnsontheuseofrequestheaderstopublishattributestoapplications.Validvaluesforthiskeyis'On'or'Off',andthedefaultvalueis'Off'.Thiskeyisdisabledif`apache::mod::shib`isnotdefined.Checkthe[`mod_shib`documentation](https://wiki.shibboleth.net/confluence/display/SHIB2/NativeSPApacheConfig#NativeSPApacheConfig-Server/VirtualHostOptions) for more details.
######`ssl_options`
Stringorlistof[SSLOptions](https://httpd.apache.org/docs/current/mod/mod_ssl.html#ssloptions), which configure SSL engine run-time options. This handler takes precedence over SSLOptions set in the parent block of the vhost.
```puppet
apache::vhost{'secure.example.net':
docroot=>'/path/to/directory',
directories=>[
{path=>'/path/to/directory',
ssl_options=>'+ExportCertData',
},
{path=>'/path/to/different/dir',
ssl_options=>['-StdEnvVars','+ExportCertData'],
},
],
}
```
######`suphp`
Ahashcontainingthe'user'and'group'keysforthe[suPHP_UserGroup](http://www.suphp.org/DocumentationView.html?file=apache/CONFIG) setting. It must be used with `suphp_engine => on` in the vhost declaration, and can only be passed within `directories`.
Specifies[SSLProtocol](http://httpd.apache.org/docs/current/mod/mod_ssl.html#sslprotocol). Expects an array of accepted protocols. Defaults to 'all', '-SSLv2', '-SSLv3'.
#####`ssl_cipher`
Specifies[SSLCipherSuite](http://httpd.apache.org/docs/current/mod/mod_ssl.html#sslciphersuite). Defaults to 'HIGH:MEDIUM:!aNULL:!MD5'.
#####`ssl_honorcipherorder`
Sets[SSLHonorCipherOrder](http://httpd.apache.org/docs/current/mod/mod_ssl.html#sslhonorcipherorder), which is used to prefer the server's cipher preference order. Defaults to 'On' in the base `apache` config.
Setsthecertificaterevocationchecklevelviathe[SSLCARevocationCheckdirective](http://httpd.apache.org/docs/current/mod/mod_ssl.html#sslcarevocationcheck), defaults to 'undef'. This default works out of the box but must be specified when using CRLs in production. Only applicable to Apache 2.4 or higher; the value is ignored on older versions.
Setsthe[SSLVerifyClient](http://httpd.apache.org/docs/current/mod/mod_ssl.html#sslverifyclient) directive, which sets the certificate verification level for client authentication. Valid values are: 'none', 'optional', 'require', and 'optional_no_ca'. Defaults to 'undef'.
```puppet
apache::vhost{'sample.example.net':
…
ssl_verify_client=>'optional',
}
```
#####`ssl_verify_depth`
Setsthe[SSLVerifyDepth](http://httpd.apache.org/docs/current/mod/mod_ssl.html#sslverifydepth) directive, which specifies the maximum depth of CA certificates in client certificate verification. Defaults to 'undef'.
```puppet
apache::vhost{'sample.example.net':
…
ssl_verify_depth=>1,
}
```
#####`ssl_options`
Setsthe[SSLOptions](http://httpd.apache.org/docs/current/mod/mod_ssl.html#ssloptions) directive, which configures various SSL engine run-time options. This is the global setting for the given vhost and can be a string or an array. Defaults to 'undef'.
Setsthe[SSLOpenSSLConfCmd](http://httpd.apache.org/docs/current/mod/mod_ssl.html#sslopensslconfcmd) directive, which provides direct configuration of OpenSSL parameters. Defaults to 'undef'.
#####`ssl_proxyengine`
Specifieswhetherornottouse[SSLProxyEngine](http://httpd.apache.org/docs/current/mod/mod_ssl.html#sslproxyengine). Valid values are 'true' and 'false'. Defaults to 'false'.
Theapachemoduleallowsyoutosetupprettymuchanyconfigurationofvirtualhostyoumightneed.Thissectionaddressessomecommonconfigurations,butlookatthe[Testssection](https://github.com/puppetlabs/puppetlabs-apache/tree/master/tests) for even more examples.
Ifyouwishtodynamicallydeclareyourbackendserversvia[exportedresources](http://docs.puppetlabs.com/guides/exported_resources.html) collected on a central node, you must set this parameter to 'true' in order to collect the exported balancer member resources that were exported by the balancer member nodes.
Definesmembersof[mod_proxy_balancer](http://httpd.apache.org/docs/current/mod/mod_proxy_balancer.html), which sets up a balancer member inside a listening service configuration block in etc/apache/apache.cfg on the load balancer.
Anarrayof[options](http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#balancermember) to be specified after the URL. Accepts any key-value pairs available to [ProxyPass](http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypass).
*`apache::listen`:Basedonthetitle,controlswhichportsApachebindstoforlistening.Adds[Listen](http://httpd.apache.org/docs/current/bind.html) directives to ports.conf in the Apache HTTPD configuration directory. Titles take the form '<port>', '<ipv4>:<port>', or '<ipv6>:<port>'.
*`apache::namevirtualhost`:Enablesname-basedhostingofavirtualhost.Addsall[NameVirtualHost](http://httpd.apache.org/docs/current/vhosts/name-based.html) directives to the `ports.conf` file in the Apache HTTPD configuration directory. Titles take the form '\*', '*:<port>', '\_default_:<port>, '<ip>', or '<ip>:<port>'.
*`apache::peruser::multiplexer`:Enablesthe[Peruser](http://www.freebsd.org/cgi/url.cgi?ports/www/apache22-peruser-mpm/pkg-descr) module for FreeBSD only.
*`apache::peruser::processor`:Enablesthe[Peruser](http://www.freebsd.org/cgi/url.cgi?ports/www/apache22-peruser-mpm/pkg-descr) module for FreeBSD only.
Thisprojectcontainstestsforboth[rspec-puppet](http://rspec-puppet.com/) and [beaker-rspec](https://github.com/puppetlabs/beaker-rspec) to verify functionality. For in-depth information please see their respective documentation.