fix: WinBox tunnel bind address, port range, and proxy support
- Bind tunnel listeners to 0.0.0.0 instead of 127.0.0.1 so tunnels are reachable through reverse proxies and container networks - Reduce port range to 49000-49004 (5 concurrent tunnels) - Derive WinBox URI host from request Host header instead of hardcoding 127.0.0.1, enabling use behind reverse proxies - Add README security warning about default encryption keys Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -82,7 +82,7 @@ services:
|
||||
POLL_INTERVAL_SECONDS: 60
|
||||
WIREGUARD_GATEWAY: wireguard
|
||||
TUNNEL_PORT_MIN: 49000
|
||||
TUNNEL_PORT_MAX: 49100
|
||||
TUNNEL_PORT_MAX: 49004
|
||||
TUNNEL_IDLE_TIMEOUT: 300
|
||||
SSH_RELAY_PORT: 8080
|
||||
SSH_IDLE_TIMEOUT: 900
|
||||
@@ -90,7 +90,7 @@ services:
|
||||
SSH_MAX_PER_USER: 10
|
||||
SSH_MAX_PER_DEVICE: 20
|
||||
ports:
|
||||
- "127.0.0.1:49000-49100:49000-49100"
|
||||
- "49000-49004:49000-49004"
|
||||
ulimits:
|
||||
nofile:
|
||||
soft: 8192
|
||||
|
||||
Reference in New Issue
Block a user