We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to use multiple machine ssh service on same port using custom domains or subdomains?
Machine 1: serverAddr = "x.x.x.x" serverPort = 7000
[proxies] name = "ssh1" type = "tcpmux" multiplexer = "httpconnect" customDomains = ["machine-a.example.com"] localIP = "127.0.0.1" localPort = 22
Machine 2: serverAddr = "x.x.x.x" serverPort = 7000
[[proxies]] name = "ssh2" type = "tcpmux" multiplexer = "httpconnect" customDomains = ["machine-b.example.com"] localIP = "127.0.0.1" localPort = 22
The text was updated successfully, but these errors were encountered:
xfrpc does not support such configuration
Sorry, something went wrong.
use a socks5 to do proxy at server.
No branches or pull requests
I want to use multiple machine ssh service on same port using custom domains or subdomains?
Machine 1:
serverAddr = "x.x.x.x"
serverPort = 7000
[proxies]
name = "ssh1"
type = "tcpmux"
multiplexer = "httpconnect"
customDomains = ["machine-a.example.com"]
localIP = "127.0.0.1"
localPort = 22
Machine 2:
serverAddr = "x.x.x.x"
serverPort = 7000
[[proxies]]
name = "ssh2"
type = "tcpmux"
multiplexer = "httpconnect"
customDomains = ["machine-b.example.com"]
localIP = "127.0.0.1"
localPort = 22
The text was updated successfully, but these errors were encountered: