From 0a6d08bfddc5c43f3c77f16b00fe0a22e7e0e7e2 Mon Sep 17 00:00:00 2001 From: Joxit Date: Sun, 22 Jan 2023 20:53:12 +0100 Subject: [PATCH] ci: disable proxy request buffering (#282) fixes #282 --- nginx/default.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nginx/default.conf b/nginx/default.conf index ac4ee74..d095233 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -13,6 +13,8 @@ server { # required for strict SNI checking: see Issue #70 (https://github.com/Joxit/docker-registry-ui/issues/70) proxy_ssl_server_name on; proxy_buffering off; + # Fix push and pull of large images: see Issue #282 (https://github.com/Joxit/docker-registry-ui/issues/282) + proxy_request_buffering off; proxy_ignore_headers "X-Accel-Buffering"; location / {