Codebase list puppet-module-gnocchi / 1774c83
Merge "Adapt to new type validation in puppetlabs-apache" Zuul authored 1 year, 9 months ago Gerrit Code Review committed 1 year, 9 months ago
2 changed file(s) with 9 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
4949 #
5050 # [*priority*]
5151 # (optional) The priority for the vhost.
52 # Defaults to '10'
52 # Defaults to 10
5353 #
5454 # [*threads*]
5555 # (optional) The number of threads for the vhost.
7171 #
7272 # [*access_log_file*]
7373 # The log file name for the virtualhost.
74 # Optional. Defaults to false.
74 # Optional. Defaults to undef.
7575 #
7676 # [*access_log_format*]
7777 # The log format for the virtualhost.
78 # Optional. Defaults to false.
78 # Optional. Defaults to undef.
7979 #
8080 # [*error_log_file*]
8181 # The error log file name for the virtualhost.
128128 $ssl_certs_dir = undef,
129129 $wsgi_process_display_name = undef,
130130 $threads = 1,
131 $priority = '10',
132 $access_log_file = false,
133 $access_log_format = false,
131 $priority = 10,
132 $access_log_file = undef,
133 $access_log_format = undef,
134134 $error_log_file = undef,
135135 $custom_wsgi_process_options = {},
136136 $headers = undef,
88 :bind_port => 8041,
99 :group => 'gnocchi',
1010 :path => '/',
11 :priority => 10,
1112 :servername => facts[:fqdn],
1213 :ssl => false,
1314 :threads => 1,
2122 :headers => nil,
2223 :request_headers => nil,
2324 :custom_wsgi_process_options => {},
24 :access_log_file => false,
25 :access_log_format => false,
25 :access_log_file => nil,
26 :access_log_format => nil,
2627 )}
2728 end
2829