| Index: modules/nginx/manifests/params.pp |
| diff --git a/modules/nginx/manifests/params.pp b/modules/nginx/manifests/params.pp |
| index 0ef7d7b858a714293b6cb48310300c621c37017f..960dfc62237dba66ce1063aa435489e8835a1912 100644 |
| --- a/modules/nginx/manifests/params.pp |
| +++ b/modules/nginx/manifests/params.pp |
| @@ -1,6 +1,6 @@ |
| class nginx::params { |
| - $worker_processes = 2 |
| - $worker_connections = 1024 |
| + $worker_processes = hiera('nginx::worker_processes', 2) |
| + $worker_connections = hiera('nginx::worker_connections', 1024) |
| $multi_accept = off |
| $worker_rlimit_nofile = 30000 |
| $sendfile = on |