From 227e6856431a8e4127b5c84be7769ef245ab1cff Mon Sep 17 00:00:00 2001 From: BlackDex Date: Sat, 12 Jan 2019 18:38:19 +0100 Subject: [PATCH] Added client_max_body_size option to allow large attachments --- Proxy-examples.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Proxy-examples.md b/Proxy-examples.md index 8a6f8ce..3b28017 100644 --- a/Proxy-examples.md +++ b/Proxy-examples.md @@ -37,6 +37,9 @@ server { # Specify SSL config if using a shared one. #include conf.d/ssl/ssl.conf; + # Allow large attachments + client_max_body_size 128M; + location / { proxy_pass http://:80; proxy_set_header Host $host;