From ab5d6a1edafad2e9f9f0d7b70ba212ca51c5a15b Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Tue, 8 Nov 2022 20:05:43 +0100 Subject: [PATCH] http and its consequences have been --- nginx/nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 1f5decb..e94ab85 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -32,6 +32,9 @@ http { location / { resolver 127.0.0.11 valid=30s; set $upstream_registry registry; + + proxy_set_header X-Forwarded-Proto https + proxy_pass https://$upstream_registry:5000; } }