mirror of
https://github.com/ruanbekker/docker-selfhosted-server.git
synced 2025-04-19 16:11:39 +02:00
Create bitwarden.conf
This commit is contained in:
parent
b0f055225b
commit
4e9446cd84
23
bitwarden/bitwarden/frontend/bitwarden.conf
Normal file
23
bitwarden/bitwarden/frontend/bitwarden.conf
Normal file
@ -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…
x
Reference in New Issue
Block a user