11 lines
239 B
Puppet
11 lines
239 B
Puppet
define nginxproxy::locations (
|
|
Array[Hash] $locations = [],
|
|
) {
|
|
$locations.each |$location| {
|
|
nginx::resource::location { $location['path']:
|
|
server => $nginxproxy::nginx_vhost,
|
|
proxy => $location['proxy'],
|
|
}
|
|
}
|
|
}
|