From ea06e2fbbb2b80cc21c79014f0c9062a98014d26 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Thu, 1 Sep 2022 21:19:25 +0200 Subject: [PATCH] thicc docker image --- nginx/nginx.conf | 2 ++ nginx/nginx.local.conf | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index a02bb1d..b8e4361 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -22,6 +22,8 @@ http { server_name "private-docker-registry.nilstrieb.dev"; + client_max_body_size 0; + location / { proxy_pass https://registry:5000/; } diff --git a/nginx/nginx.local.conf b/nginx/nginx.local.conf index 236b74e..b318c0a 100644 --- a/nginx/nginx.local.conf +++ b/nginx/nginx.local.conf @@ -16,9 +16,10 @@ http { server_name "private-docker-registry.nilstrieb.dev"; + client_max_body_size 0; + location / { - return 404 'No registry here...'; - #proxy_pass http://registry:5000/; + proxy_pass http://registry:5000/; } }