Initial resurrection kit — 81 scripts, 62 references, configs, systemd units, crons, Docker compose files, Caddy config, master README

This commit is contained in:
root
2026-07-15 17:45:36 -04:00
commit ae056eaf83
197 changed files with 26127 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# Vaultwarden Changelog
## 2026-07-05
### Initial deployment
- Deployed vaultwarden/server:1.33.2 on app1 (netcup)
- Port 8080 mapped to container port 80
- Admin panel enabled via ADMIN_TOKEN in .env
- Signups disabled, invitations allowed
- Volume: ./data:/data
- Pending: Caddy reverse proxy + Let's Encrypt for vaultwarden.app1.itpropartner.com
- Pending: Add S3 backup of ./data/ to daily backup script
- Compose files synced to S3 every 15 min via hermes-live-sync (data excluded for now)
+17
View File
@@ -0,0 +1,17 @@
services:
vaultwarden:
image: vaultwarden/server:1.33.2
container_name: vaultwarden
restart: unless-stopped
ports:
- "8080:80"
volumes:
- ./data:/data
environment:
- DOMAIN=https://vaultwarden.tailc2f3b0.ts.net
- ADMIN_TOKEN=${ADMIN_TOKEN}
- SIGNUPS_ALLOWED=false
- SIGNUPS_VERIFY=false
- INVITATIONS_ALLOWED=true
env_file:
- .env