seperate module/user parameters in config

This commit is contained in:
James Fryman 2014-10-27 16:44:06 +01:00
parent 859f4cbdb7
commit 035472208c

View file

@ -14,13 +14,31 @@
#
# This class file is not called directly
class nginx::config(
$client_body_buffer_size = undef,
$client_body_temp_path = undef,
$client_max_body_size = undef,
# START: Module Bootstrap Config
$confd_purge = undef,
$conf_dir = undef,
$conf_template = undef,
$daemon_user = undef,
$global_owner = undef,
$global_group = undef,
$global_mode = undef,
$logdir = undef,
$nginx_error_log = undef,
$pid = undef,
$root_group = undef,
$run_dir = undef,
$sites_available_owner = undef,
$sites_available_group = undef,
$sites_available_mode = undef,
$super_user = undef,
$temp_dir = undef,
$vhost_purge = undef,
# END: Module Bootstrap Config
# START: User Parameters
$client_body_buffer_size = undef,
$client_body_temp_path = undef,
$client_max_body_size = undef,
$events_use = undef,
$fastcgi_cache_inactive = undef,
$fastcgi_cache_key = undef,
@ -35,13 +53,10 @@ class nginx::config(
$http_tcp_nodelay = undef,
$http_tcp_nopush = undef,
$keepalive_timeout = undef,
$logdir = undef,
$mail = undef,
$multi_accept = undef,
$names_hash_bucket_size = undef,
$names_hash_max_size = undef,
$nginx_error_log = undef,
$pid = undef,
$proxy_buffers = undef,
$proxy_buffer_size = undef,
$proxy_cache_inactive = undef,
@ -58,25 +73,15 @@ class nginx::config(
$proxy_send_timeout = undef,
$proxy_set_header = undef,
$proxy_temp_path = undef,
$root_group = undef,
$run_dir = undef,
$sendfile = undef,
$server_tokens = undef,
$sendfile = undef,
$spdy = undef,
$super_user = undef,
$temp_dir = undef,
$types_hash_bucket_size = undef,
$types_hash_max_size = undef,
$vhost_purge = undef,
$worker_connections = undef,
$worker_processes = undef,
$worker_rlimit_nofile = undef,
$global_owner = undef,
$global_group = undef,
$global_mode = undef,
$sites_available_owner = undef,
$sites_available_group = undef,
$sites_available_mode = undef,
$types_hash_bucket_size = undef,
$types_hash_max_size = undef,
# END: User Parameters
) {
### Validations ###