0868b32e79
Change-Id: I0335cf49c2ce55659c49325f2c0028f1af93705d
36 lines
734 B
Puppet
36 lines
734 B
Puppet
#
|
|
# Configure swift staticweb, see documentation for Swift staticweb middleware
|
|
# to understand more about configuration.
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# include 'swift::proxy::staticweb'
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*url_base*]
|
|
# (optional) The URL scheme and/or the host name used to generate redirects.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# == Authors
|
|
#
|
|
# Mehdi Abaakouk <sileht@sileht.net>
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
#
|
|
class swift::proxy::staticweb(
|
|
$url_base = $::os_service_default
|
|
) {
|
|
|
|
include swift::deps
|
|
|
|
swift_proxy_config {
|
|
'filter:staticweb/use': value => 'egg:swift#staticweb';
|
|
'filter:staticweb/url_base': value => $url_base;
|
|
}
|
|
}
|