fileverse/poc/collab-server
Jeff Emmett 6291b2cb2d Migrate services to rspace.online domains and fix Traefik routing
- Add separate routers for rspace.online aliases (collab, ipfs, ipfs-api)
  instead of || syntax to avoid priority conflicts
- Fix healthcheck quoting for Node.js v23 TypeScript-style parsing
- Update IPFS client defaults from jeffemmett.com to rspace.online
- Add rspace.online CORS origins to collab-server

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-31 18:19:14 -07:00
..
Dockerfile All 5 phases implemented and tested 2026-03-31 17:09:46 -07:00
README.md Initial research and POC scaffolding for Fileverse + rStack integration 2026-03-31 16:20:11 -07:00
docker-compose.yml Migrate services to rspace.online domains and fix Traefik routing 2026-03-31 18:19:14 -07:00
ipfs-init.sh All 5 phases implemented and tested 2026-03-31 17:09:46 -07:00

README.md

Self-Hosted Collaboration Server

Fileverse's collaboration-server deployed on Netcup for rStack real-time collaboration.

Architecture

rSpace Client ──WebSocket──► Traefik ──► collab-server ──► MongoDB (ephemeral)
                                                       ──► Redis (sessions)

Deployment

# On Netcup
cd /opt/apps/collab-server
docker compose up -d

# Verify
curl https://collab.jeffemmett.com/health

Auth Integration

The collaboration-server uses UCAN tokens. For rStack integration, we need to either:

  1. Generate UCAN tokens from EncryptID DIDs
  2. Fork and replace auth with EncryptID JWT

See docs/integration-plan.md Phase 3 for details.

Status

Not started — Docker Compose is prepared, needs testing after DNS setup.