Vex is a reverse HTTP proxy tunnel via secure SSH connections.
Let's say you are running HTTP server locally on port 6500, then command would be:
$ vex -s bleenco.space -p 2200 -ls localhost -lp 65002200 is port where vex daemon (server) is running and localhost:6500 is local HTTP server.
Example output:
$ vex -s bleenco.space -p 2200 -ls localhost -lp 6500 [vexd] Generated URL: http://23c41c01.bleenco.spaceThen open generated URL in the browser to check if works, then share the URL if needed.
$ vex -s bleenco.space -p 2200 -ls localhost -lp 7500vex client options:
Usage: vex [options] Options: -s, SSH server remote host (default: bleenco.space) -p, SSH server remote port (default: 2200) -ls, Local HTTP server host (default: localhost) -lp, Local HTTP server port (default: 7500) -a, Keep tunnel connection alive (default: false) make clean && make build./build/vex-server-linux_amd64 --helpUsage: vexd [options] Options: -d, Domain name that HTTP server is hosted on. It is used for generating subdomain IDs (defaults to the environment variable VEX_DOMAIN and falls back to local.net) -k, Path to file of a ECDSA private key. All SSH communication will be secured using this key (defaults to the VEX_KEY environment variable falls back to id_rsa) -s, SSH server listen address (defaults to VEX_SSH_SERVER and falls back to 0.0.0.0:2200) -http, HTTP server listen address (defaults to VEX_HTTP_SERVER and falls back to 0.0.0.0:2000) The MIT License Copyright (c) 2018 Bleenco GmbH https://bleenco.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.