module-nginx/templates/vhost/locations/uwsgi.erb
2014-06-24 19:17:08 +03:00

8 righe
231 B
Text

<% if defined? @www_root -%>
root <%= @www_root %>;
<% end -%>
<% if @try_files -%>
try_files<% @try_files.each do |try| -%> <%= try %><% end -%>;
<% end -%>
include <%= @uwsgi_params %>;
uwsgi_pass <%= @uwsgi %>;