module-nginx/tests/location_params.pp

13 lines
314 B
Puppet
Raw Normal View History

2014-08-11 10:04:21 +02:00
include nginx
nginx::resource::location { 'www.test.com-params':
2014-07-18 04:00:16 +02:00
ensure => present,
location => '/some/url',
vhost => 'www.test.com',
fastcgi_param => {
'APP_ENV' => 'production',
'APP_VERSION' => '0.1.10',
'APP_SECRET' => 'hisfaihicasagfkjsa',
2014-08-11 10:04:21 +02:00
},
}