OLD | NEW |
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 -%> |
OLD | NEW |