From e06323d94b8d25fb37d392bf9c2a8897a0b059e9 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 12 Jan 2023 08:47:02 -0500 Subject: [PATCH] add missing connectors to nginx template (#2569) --- docker-unified/hbs/nginx-config.hbs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docker-unified/hbs/nginx-config.hbs b/docker-unified/hbs/nginx-config.hbs index 382913796d..81dd85b34a 100644 --- a/docker-unified/hbs/nginx-config.hbs +++ b/docker-unified/hbs/nginx-config.hbs @@ -77,6 +77,30 @@ server { add_header Content-Type $fido_content_type; } + location = /duo-connector.html { + root /app/Web; + } + + location = /webauthn-connector.html { + root /app/Web; + } + + location = /webauthn-fallback-connector.html { + root /app/Web; + } + + location = /sso-connector.html { + root /app/Web; + } + + location = /captcha-connector.html { + root /app/Web; + } + + location = /captcha-mobile-connector.html { + root /app/Web; + } + location /attachments { alias /etc/bitwarden/attachments/; }