Sync infra config: HA/Zabbix relocation, Immich storage move, new services

Accumulated uncommitted infra changes:
- Caddyfile: repoint HA/Zabbix to 192.168.1.4/.3, add ~20 new site routes
- Immich: move media to /mnt/smsg, enable CUDA ML, mem limits, rewrite backup.sh
- Add service stacks: agap-mcp, anki, family, freshrss, iperf3, kanboard,
  linkwarden, qbittorrent, radicale, syncthing, vikunja, windows
- openwebui: enable API keys; ollama: drop CPU fallback
- seafile/zabbix: extra_hosts entries; matrix: add user juris
- Remove pihole stack and stale wiki/migrate.py
- Ignore marketplace-mcp (standalone repo) and linkwarden runtime data

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
This commit is contained in:
Alvis
2026-07-04 13:28:04 +00:00
parent 4363130163
commit b8efe4732d
51 changed files with 2813 additions and 374 deletions

BIN
iperf3/CellularLab-v2.2.apk Normal file

Binary file not shown.

Binary file not shown.

9
iperf3/apk/index.html Normal file
View File

@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head><title>iperf3 Android</title></head>
<body>
<h2>iperf3 for Android</h2>
<p><a href="CellularLab-v2.2.apk">Download CellularLab v2.2 (iperf3 client)</a></p>
<p>Server: <code>iperf.alogins.net</code> &mdash; port 5201</p>
</body>
</html>

18
iperf3/docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
services:
iperf3:
image: networkstatic/iperf3
container_name: iperf3
command: -s
ports:
- "5201:5201"
- "5201:5201/udp"
restart: unless-stopped
iperf3-files:
image: nginx:alpine
container_name: iperf3-files
ports:
- "8095:80"
volumes:
- ./apk:/usr/share/nginx/html:ro
restart: unless-stopped