From 1db5f2e1b1f46727f9d362f1e6b847c94d292030 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Sun, 10 Aug 2025 16:45:55 +0100 Subject: [PATCH] fix: enable 100M uploads S3 (garage) --- proxy/nginx/conf.d/s3.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proxy/nginx/conf.d/s3.conf b/proxy/nginx/conf.d/s3.conf index 7ad2d3d..ab99ae7 100644 --- a/proxy/nginx/conf.d/s3.conf +++ b/proxy/nginx/conf.d/s3.conf @@ -14,6 +14,8 @@ server { listen 443 ssl; server_name s3.systemsobscure.net; + client_max_body_size 100M; # Allow large image uploads + # SSL configuration ssl_certificate /etc/letsencrypt/live/systemsobscure.net/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/systemsobscure.net/privkey.pem;