mirror of
https://github.com/CyberMind-FR/secubox-deb.git
synced 2026-07-29 09:14:33 +00:00
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>
8 lines
259 B
Plaintext
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;
|
|
}
|