51 lines
997 B
Puppet
51 lines
997 B
Puppet
# Define: apache::vhost::proxy
|
|
#
|
|
# Configures an apache vhost that will only proxy requests
|
|
#
|
|
# Parameters:
|
|
# * $port:
|
|
# The port on which the vhost will respond
|
|
# * $dest:
|
|
# URI that the requests will be proxied for
|
|
# - $priority
|
|
# - $template -- the template to use for the vhost
|
|
# - $vhost_name - the name to use for the vhost, defaults to '*'
|
|
#
|
|
# Actions:
|
|
# * Install Apache Virtual Host
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
define apache::vhost::proxy (
|
|
$port,
|
|
$dest,
|
|
$priority = '10',
|
|
$template = "apache/vhost-proxy.conf.erb",
|
|
$servername = '',
|
|
$serveraliases = '',
|
|
$ssl = false,
|
|
$vhost_name = '*'
|
|
) {
|
|
|
|
include apache
|
|
|
|
$srvname = $name
|
|
|
|
if $ssl == true {
|
|
include apache::ssl
|
|
}
|
|
|
|
file {"${apache::params::vdir}/${priority}-${name}":
|
|
content => template($template),
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '755',
|
|
require => Package['httpd'],
|
|
notify => Service['httpd'],
|
|
}
|
|
|
|
|
|
}
|