20 lines
614 B
Text
20 lines
614 B
Text
<% if defined? @www_root -%>
|
|
root <%= @www_root %>;
|
|
<% end -%>
|
|
<% if @fastcgi_split_path -%>
|
|
fastcgi_split_path_info <%= @fastcgi_split_path %>;
|
|
<% end -%>
|
|
<% if @try_files -%>
|
|
try_files<% @try_files.each do |try| -%> <%= try %><% end -%>;
|
|
<% end -%>
|
|
include <%= @fastcgi_params %>;
|
|
fastcgi_pass <%= @fastcgi %>;
|
|
<% if defined? @fastcgi_script %>
|
|
fastcgi_param SCRIPT_FILENAME <%= @fastcgi_script %>;
|
|
<% end -%>
|
|
<% if defined? @fastcgi_param %>
|
|
# Enable custom fastcgi_params
|
|
<% fastcgi_param.each_pair do |key, val| -%>
|
|
fastcgi_param <%= key %> <%= val %>;
|
|
<% end -%>
|
|
<% end %>
|