location_params.pp 314 B

123456789101112
  1. include nginx
  2. nginx::resource::location { 'www.test.com-params':
  3. ensure => present,
  4. location => '/some/url',
  5. vhost => 'www.test.com',
  6. fastcgi_param => {
  7. 'APP_ENV' => 'production',
  8. 'APP_VERSION' => '0.1.10',
  9. 'APP_SECRET' => 'hisfaihicasagfkjsa',
  10. },
  11. }