
This commit implements additional proxy middlewares - catch_errors - handles errors - ratelimit - limits incoming requests - s3token - misddleware for s3auth - swift3 - implement swift APIs These middlewares needed to be modeled b/c they are configurable interfaces that needed to be configurable via Puppet.
25 lines
394 B
Puppet
25 lines
394 B
Puppet
#
|
|
# Configure swift swift3.
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# == Authors
|
|
#
|
|
# François Charlier fcharlier@ploup.net
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
#
|
|
class swift::proxy::swift3() {
|
|
|
|
concat::fragment { 'swift_swift3':
|
|
target => '/etc/swift/proxy-server.conf',
|
|
content => template('swift/proxy/swift3.conf.erb'),
|
|
order => '27',
|
|
}
|
|
|
|
}
|