le1t0-deprec 2.1.6.024 → 2.1.6.025
Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG
CHANGED
@@ -11,8 +11,11 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
11
11
|
|
12
12
|
}
|
13
13
|
|
14
|
+
set :haproxy_user, 'root'
|
15
|
+
set :haproxy_group, 'root'
|
16
|
+
|
14
17
|
# :haproxy_global_options should be a hash of options, in key => value pairs. Values can also be arrays of strings.
|
15
|
-
set :haproxy_global_options
|
18
|
+
set :haproxy_global_options, {
|
16
19
|
"log" => "/var/log/haproxy.log daemon info",
|
17
20
|
"maxconn" => 4096,
|
18
21
|
"pidfile" => "/var/run/haproxy.pid",
|
@@ -22,7 +25,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
22
25
|
# :haproxy_default_options should be a hash of options, in key => value pairs.
|
23
26
|
# :stats_auth => 'user:password' presence of this setting automatically enables stats
|
24
27
|
# :options => hash of options, in key => value pairs. Values can also be arrays of strings.
|
25
|
-
set :haproxy_default_options
|
28
|
+
set :haproxy_default_options, {
|
26
29
|
:stats_auth => 'user:password',
|
27
30
|
:options => {
|
28
31
|
"option" => [
|