Skip to content

Commit

Permalink
Merge pull request jippi#89 from nicolasbrechet/fix_pool_config_template
Browse files Browse the repository at this point in the history
Fixed issue with the pool.conf.erb template:
  • Loading branch information
jippi committed Aug 21, 2014
2 parents 1cbc0a6 + 2ac8d2d commit 217e77f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/fpm/pool.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ env[<%= key %>] = <%= value %>
;

<% @php_value.sort_by {|key,value| key}.each do |key,value| -%>
<%= key -%> = <%= value %>
php_value[<%= key -%>] = <%= value %>
<% end -%>

;
Expand All @@ -285,15 +285,15 @@ php_flag[<%= key -%>] = <%= flag %>
;

<% @php_admin_value.sort_by {|key,value| key}.each do |key,value| -%>
<%= key -%> = <%= value %>
php_admin_value[<%= key -%>] = <%= value %>
<% end -%>

;
; Custom PHP admin flags
;

<% @php_admin_flag.sort_by {|key,flag| key}.each do |key,flag| -%>
<%= key -%> = <%= flag %>
php_admin_flag[<%= key -%>] = <%= flag %>
<% end -%>

;
Expand Down

0 comments on commit 217e77f

Please sign in to comment.