Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: modules/spawn_fcgi/templates/php-pool.erb

Issue 29465613: #1574 - Update template syntax in spawn_fcgi module (Closed)
Patch Set: Created June 14, 2017, 12:41 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | modules/spawn_fcgi/templates/pool.erb » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <% if socket != :undef -%> 1 <% if @socket != :undef -%>
2 -s <%= socket %> 2 -s <%= @socket %>
3 <% if mode != :undef -%> 3 <% if @mode != :undef -%>
4 -M <%= mode %> 4 -M <%= @mode %>
5 <% end -%> 5 <% end -%>
6 -U <%= user %> 6 -U <%= @user %>
7 -G <%= group %> 7 -G <%= @group %>
8 <% end -%> 8 <% end -%>
9 <% if real_ip != :undef -%> 9 <% if @real_ip != :undef -%>
10 -a <%= real_ip %> 10 -a <%= @real_ip %>
11 -p <%= port %> 11 -p <%= @port %>
12 <% end -%> 12 <% end -%>
13 <% if children != :undef -%> 13 <% if @children != :undef -%>
14 -C <%= children %> 14 -C <%= @children %>
15 <% end -%> 15 <% end -%>
16 <% if chroot != :undef -%> 16 <% if @chroot != :undef -%>
17 -c <%= chroot %> 17 -c <%= @chroot %>
18 -S 18 -S
19 <% end -%> 19 <% end -%>
20 -u <%= user %> 20 -u <%= @user %>
21 -g <%= group %> 21 -g <%= @group %>
22 -- <%= real_fcgi_app %> 22 -- <%= @real_fcgi_app %>
23 <% if fcgi_app_args != :undef -%> 23 <% if @fcgi_app_args != :undef -%>
24 <%= fcgi_app_args %> 24 <%= @fcgi_app_args %>
25 <% end -%> 25 <% end -%>
OLDNEW
« no previous file with comments | « no previous file | modules/spawn_fcgi/templates/pool.erb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld