https://mirantis.jira.com/browse/PROD-20664

client_body_buffer_size will not have a proper value when size is below 200.
Currently comparing a string (trailing "m" included) with size

Change-Id: Ic407480c025da5091905fd7a827068269138943f
diff --git a/nginx/files/proxy.conf b/nginx/files/proxy.conf
index 8b4601a..82958c6 100644
--- a/nginx/files/proxy.conf
+++ b/nginx/files/proxy.conf
@@ -40,7 +40,7 @@
 
       {%- if location.size is defined %}
       client_max_body_size {{ location.size }};
-      {%- if location.size > 200 %}
+      {%- if location.size.split("m")[0] | int > 200 %}
       client_body_buffer_size 200m;
       {%- else %}
       client_body_buffer_size 20m;