Project

General

Profile

Download (661 Bytes) Statistics
| Branch: | Tag: | Revision:
# Manages the pub httpd directory where
# e.g. the katello ca certificate is available
# for download
class foreman_proxy_content::pub_dir (
String $servername = $::fqdn
) {
include ::foreman_proxy_content
include ::apache

ensure_packages('katello-client-bootstrap')

apache::vhost { 'foreman_proxy_content':
servername => $servername,
port => 80,
priority => '05',
docroot => '/var/www/html',
options => ['SymLinksIfOwnerMatch'],
additional_includes => ['/etc/pulp/vhosts80/*.conf'],
custom_fragment => template('foreman_proxy_content/httpd_pub.erb'),
}
}
(5-5/6)