summaryrefslogtreecommitdiffstats
path: root/modules/tozt
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-07-18 22:10:22 -0400
committerJesse Luehrs <doy@tozt.net>2023-07-18 22:10:22 -0400
commit8f6a772d8a5cd8eb045edb0d2fee30ccaaa565fe (patch)
tree7b21bccda2889a2a01e159c6e78cc732df04038a /modules/tozt
parentbf48297c5e9845ef83816d0578f0481f6678c390 (diff)
downloadpuppet-tozt-8f6a772d8a5cd8eb045edb0d2fee30ccaaa565fe.tar.gz
puppet-tozt-8f6a772d8a5cd8eb045edb0d2fee30ccaaa565fe.zip
try enabling websockets for vaultwarden
Diffstat (limited to 'modules/tozt')
-rw-r--r--modules/tozt/files/nginx/bitwarden-tls.conf2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/tozt/files/nginx/bitwarden-tls.conf b/modules/tozt/files/nginx/bitwarden-tls.conf
index 6673b1c..59f2a2a 100644
--- a/modules/tozt/files/nginx/bitwarden-tls.conf
+++ b/modules/tozt/files/nginx/bitwarden-tls.conf
@@ -8,6 +8,8 @@ server {
include ssl;
location / {
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection $connection_upgrade;
proxy_pass http://127.0.0.1:8080/;
}
}