mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:41:09 +02:00
fix(mukke): add media-src to CSP for audio playback from MinIO
Add mediaSrc option to shared security headers and configure mukke to allow audio loading from minio.mana.how (S3 presigned URLs). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
ae0ba94fce
commit
807c5da26e
3 changed files with 42 additions and 2 deletions
|
|
@ -389,6 +389,39 @@ curl -s http://localhost:3002/api/v1/health
|
|||
curl -s http://localhost:3000/
|
||||
```
|
||||
|
||||
The health check monitors:
|
||||
- All backend APIs and web frontends
|
||||
- Infrastructure (PostgreSQL, Redis)
|
||||
- Matrix services (Synapse, Element, all bots)
|
||||
- Monitoring stack (Grafana, Umami, GlitchTip, VictoriaMetrics)
|
||||
- Alerting stack (vmalert, Alertmanager, Alert Notifier)
|
||||
- Disk space for `/` and `/Volumes/ManaData` (warning at 80%, critical at 90%)
|
||||
- Cloudflare Tunnel (cloudflared process)
|
||||
|
||||
### Docker PATH auf dem Server
|
||||
|
||||
Bei SSH-Zugriff ist Docker nicht im Standard-PATH. Für Remote-Befehle:
|
||||
|
||||
```bash
|
||||
# Docker liegt unter Docker Desktop
|
||||
PATH=/Applications/Docker.app/Contents/Resources/bin:$PATH
|
||||
|
||||
# Beispiel: Remote docker compose
|
||||
ssh mana-server "PATH=/Applications/Docker.app/Contents/Resources/bin:\$PATH && docker compose -f ~/projects/manacore-monorepo/docker-compose.macmini.yml restart grafana"
|
||||
```
|
||||
|
||||
### Container existiert nicht (wurde nie erstellt)
|
||||
|
||||
Wenn ein Service im Health-Check als `HTTP 000` erscheint und `docker ps -a` den Container nicht zeigt, wurde er vermutlich beim letzten Deploy übersprungen:
|
||||
|
||||
```bash
|
||||
# Container erstellen und starten (Beispiel: Project Doc Bot)
|
||||
docker compose -f docker-compose.macmini.yml up -d matrix-project-doc-bot
|
||||
|
||||
# Nach Restart prüfen
|
||||
docker ps --filter name=mana-matrix-bot-projectdoc --format '{{.Names}} {{.Status}}'
|
||||
```
|
||||
|
||||
## Wartung
|
||||
|
||||
### Updates einspielen
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue