From 2e079e70dfb5a5503d42b9eede34d5df2fc1df0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Wed, 21 Sep 2022 15:26:40 +0200 Subject: [PATCH] fix: Allow upload of bigger files 2mb (the default) isn't enough for file submission, especially via the API when the content is base64 encoded. --- etc/nginx/sites-available/lookyloo | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/nginx/sites-available/lookyloo b/etc/nginx/sites-available/lookyloo index 46a754a..db74dd6 100644 --- a/etc/nginx/sites-available/lookyloo +++ b/etc/nginx/sites-available/lookyloo @@ -1,6 +1,7 @@ server { listen 80; server_name server_domain_or_IP; + client_max_body_size 16M; location / { proxy_pass_header Server;