From 14ca668d7f5359ebd32ecc63ade43819ed0950c1 Mon Sep 17 00:00:00 2001 From: Joxit Date: Thu, 7 Feb 2019 12:24:50 +0100 Subject: [PATCH] Add `proxy_ssl_server_name` to nginx for strict SNI checking Closes: #70 --- nginx/default.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nginx/default.conf b/nginx/default.conf index 3b9fccd1..91b86d31 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -10,6 +10,8 @@ server { # required to avoid HTTP 411: see Issue #1486 (https://github.com/moby/moby/issues/1486) chunked_transfer_encoding on; + # required for strict SNI checking: see Issue #70 (https://github.com/Joxit/docker-registry-ui/issues/70) + proxy_ssl_server_name on; location / { root /usr/share/nginx/html;