puppet-askbot/manifests/site/http.pp

15 lines
326 B
Puppet

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