From 165b758c89a7f72f136afc8971283d1a4e33eb60 Mon Sep 17 00:00:00 2001 From: sergeyph <168668657+sergeyph@users.noreply.github.com> Date: Thu, 3 Oct 2024 15:50:30 -0600 Subject: [PATCH] Update huly.nginx. Increased file upload size Signed-off-by: sergeyph <168668657+sergeyph@users.noreply.github.com> --- nginx/huly.nginx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nginx/huly.nginx b/nginx/huly.nginx index 1c924dd..23fdf03 100644 --- a/nginx/huly.nginx +++ b/nginx/huly.nginx @@ -1,6 +1,8 @@ server { listen 80; server_name _; + client_max_body_size 100M; + location / { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; @@ -66,4 +68,4 @@ server { rewrite ^/_rekoni(/.*)$ $1 break; proxy_pass http://rekoni:4004/; } -} \ No newline at end of file +}