# Häufige Probleme

**502 Bad Gateway:**
```bash
# Service läuft nicht
docker compose ps 
systemctl status caddy

# Tunnel funktioniert nicht
  ping 10.100.0.2
  wg show
```

**Connection Refused:**
```bash
# Port nicht offen 
  ufw status
  netstat -tlnp | grep PORT

# Service ist nicht erreichbar 
  docker logs CONTAINER
```

**Disk Space voll:**
```bash
df -h 
docker system prune -a --volumes
```