vaultwarden setup

This commit is contained in:
jojo
2024-07-06 17:01:56 +02:00
parent 2d78d3c423
commit c18b363d86
3 changed files with 33 additions and 2 deletions

1
vaultwarden/.env.example Normal file
View File

@@ -0,0 +1 @@
ADMIN_TOKEN=''

View File

@@ -5,11 +5,11 @@ services:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
env_file:
- ./.env
environment:
WEBSOCKET_ENABLED: "true" # Enable WebSocket notifications.
SIGNUPS_ALLOWED: "false"
# TODO create an admin token
ADMIN_TOKEN: "abc"
volumes:
- ./vw-data:/data
ports:

View File

@@ -0,0 +1,30 @@
server {
server_name vault.example.com;
listen [::]:80;
listen 80;
location / {
proxy_pass "http://127.0.0.1:50002/";
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /notifications/hub {
proxy_pass http://127.0.0.1:50003;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location /notifications/hub/negotiate {
proxy_pass http://127.0.0.1:50002;
}
client_max_body_size 128M; # allow larger uploads
}