49b5b79b76
* Options location_cfg_append and location_cfg_prepend added to fastcgi template * Option www_root is optional now * Options logging fixed in http template * Auth_basic fixed in SSL vhost header
8 lines
349 B
Text
8 lines
349 B
Text
location <%= @location %> {
|
|
<% if @location_cfg_prepend -%><% @location_cfg_prepend.sort_by {|k,v| k}.each do |key,value| -%>
|
|
<%= key %> <%= value %>;<% end -%><% end -%>
|
|
stub_status on;
|
|
<% if @location_cfg_append -%><% @location_cfg_append.sort_by {|k,v| k}.each do |key,value| -%>
|
|
<%= key %> <%= value %>;<% end -%><% end -%>
|
|
}
|
|
|