secubox-deb/common/nginx/modules.d/hub.conf
CyberMind-FR c4b7ac0f7f feat(eye-remote): Add multi-mode display system v1.9.0
Eye Remote Interactive UI enhancements:
- TTY mode: Serial terminal display from /dev/ttyGS0
- Flash mode: Progress bar with speed/ETA for USB transfers
- Auth mode: QR code generation for backup authentication
- Mode detection via /etc/secubox/gadget-mode

Hub service VM compatibility fix:
- Changed from Unix socket to TCP port 8001
- Updated nginx configs for TCP proxy
- Fixes 502 errors in VirtualBox VMs

Also includes:
- FAQ/Troubleshooting wiki page with GitHub issue links
- Kiosk launcher --no-sandbox fix for VMs
- Profile Generator GUI mockup

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-29 10:24:02 +02:00

8 lines
259 B
Plaintext

# /etc/nginx/secubox.d/hub.conf
# Installed by secubox-hub package
# Using TCP port for VM compatibility (Unix socket has issues in some VMs)
location /api/v1/hub/ {
proxy_pass http://127.0.0.1:8001/;
include /etc/nginx/snippets/secubox-proxy.conf;
}