Merge pull request #320 from timmow/client-max-body-size-ssl-vhost

Add client_max_body_size to ssl vhost
This commit is contained in:
James Fryman 2014-05-27 12:06:57 -05:00
commit 6c890da8ec

View file

@ -41,6 +41,9 @@ server {
<% if defined? @auth_basic_user_file -%>
auth_basic_user_file "<%= @auth_basic_user_file %>";
<% end -%>
<% if defined? @client_max_body_size -%>
client_max_body_size <%= @client_max_body_size %>;
<% end -%>
<% if @index_files.count > 0 -%>
index <% Array(@index_files).each do |i| %> <%= i %><% end %>;
<% end -%>