From cc355417d46274d452098e15e7c1649eaf7095d0 Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 23 Mar 2023 23:37:45 +0000 Subject: [PATCH] update docs --- README.md | 2 +- contrib/nginx/copyparty.conf | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f8d9e4bf..f83d4eca 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ firewall-cmd --reload * ☑ write-only folders * ☑ [unpost](#unpost): undo/delete accidental uploads * ☑ [self-destruct](#self-destruct) (specified server-side or client-side) - * ☑ symlink/discard existing files (content-matching) + * ☑ symlink/discard duplicates (content-matching) * download * ☑ single files in browser * ☑ [folders as zip / tar files](#zip-downloads) diff --git a/contrib/nginx/copyparty.conf b/contrib/nginx/copyparty.conf index c625fceb..ffacfc2b 100644 --- a/contrib/nginx/copyparty.conf +++ b/contrib/nginx/copyparty.conf @@ -39,3 +39,9 @@ server { proxy_set_header Connection "Keep-Alive"; } } + +# default client_max_body_size (1M) blocks uploads larger than 256 MiB +client_max_body_size 1024M; +client_header_timeout 610m; +client_body_timeout 610m; +send_timeout 610m;