Add client_max_body_size to ssl vhost

This commit is contained in:
Tim Mower 2014-05-27 11:38:32 +01:00
parent 5056ecb899
commit 9d1e2e8806

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