We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c1047d commit f10e309Copy full SHA for f10e309
manifests/init.pp
@@ -55,6 +55,7 @@
55
$conf_template = $::apache::params::conf_template,
56
$servername = $::apache::params::servername,
57
$pidfile = $::apache::params::pidfile,
58
+ $rewrite_lock = false,
59
$manage_user = true,
60
$manage_group = true,
61
$user = $::apache::params::user,
templates/httpd.conf.erb
@@ -11,6 +11,10 @@ KeepAlive <%= @keepalive %>
11
MaxKeepAliveRequests <%= @max_keepalive_requests %>
12
KeepAliveTimeout <%= @keepalive_timeout %>
13
14
+<%- if @rewrite_lock and scope.function_versioncmp([@apache_version, '2.2']) <= 0 -%>
15
+RewriteLock <%= @rewrite_lock %>
16
+<%- end -%>
17
+
18
User <%= @user %>
19
Group <%= @group %>
20
0 commit comments