1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

add missing connectors to nginx template (#2569)

This commit is contained in:
Kyle Spearrin
2023-01-12 08:47:02 -05:00
committed by GitHub
parent 503630497e
commit e06323d94b

View File

@ -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/;
}