Create bitwarden.conf

pull/1/head
Ruan Bekker 3 years ago committed by GitHub
parent b0f055225b
commit 4e9446cd84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 23
      bitwarden/bitwarden/frontend/bitwarden.conf

@ -0,0 +1,23 @@
server {
listen 80;
server_name _;
client_max_body_size 128M;
location / {
proxy_pass http://bitwarden-backend:80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /notifications/hub {
proxy_pass http://bitwarden-backend:3012;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location /notifications/hub/negotiate {
proxy_pass http://bitwarden-backend:80;
}
}
Loading…
Cancel
Save