Fix SSH tunnel gateway binding address issue #4900 (#4902)

- Fix SSH tunnel gateway incorrectly binding to proxyBindAddr instead of bindAddr
- This caused external connections to fail when proxyBindAddr was set to 127.0.0.1
- SSH tunnel gateway now correctly binds to bindAddr for external accessibility
- Update Release.md with bug fix description

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
fatedier
2025-07-28 15:19:56 +08:00
committed by GitHub
parent 7fe295f4f4
commit e6dacf3a67
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
## Features
* Support tokenSource for loading authentication tokens from files
* Support tokenSource for loading authentication tokens from files
## Fixes
* Fix SSH tunnel gateway incorrectly binding to proxyBindAddr instead of bindAddr, which caused external connections to fail when proxyBindAddr was set to 127.0.0.1