Paul Belanger fd7f94b2ef Migrate to puppet-httpd module
puppet-httpd is the openstack-infra version of puppetlabs-apache
(0.0.4) release.

This patchset will remove the puppetlabs-apache namespace from -infra
allowing for possible future patchsets to use newer puppetlabs-apache
modules.

Change-Id: Ie3d818d172ada2132a0116ce4ce2ed6d231cc005
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2015-07-21 14:41:37 -04:00

15 lines
326 B
Puppet

# == Class: askbot::site::http
# This class describes the http server configuration
class askbot::site::http (
$site_root,
$site_name,
$site_template = 'askbot/askbot.vhost.erb',
) {
::httpd::vhost { $site_name:
port => 80,
priority => 10,
docroot => $site_root,
template => $site_template,
}
}