{"id":13776066,"url":"https://github.com/bleenco/vex","last_synced_at":"2025-04-07T17:33:50.410Z","repository":{"id":57712404,"uuid":"122616935","full_name":"bleenco/vex","owner":"bleenco","description":"reverse HTTP proxy tunnel via secure SSH connections.","archived":false,"fork":false,"pushed_at":"2018-09-02T09:00:21.000Z","size":4468,"stargazers_count":23,"open_issues_count":3,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-22T22:24:18.744Z","etag":null,"topics":["http-proxy","http-tunnel","proxy","reverse","ssh-tunnel"],"latest_commit_sha":null,"homepage":"https://bleenco.space","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bleenco.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-23T12:11:30.000Z","updated_at":"2024-09-22T18:31:35.000Z","dependencies_parsed_at":"2022-09-26T21:30:36.188Z","dependency_job_id":null,"html_url":"https://github.com/bleenco/vex","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bleenco%2Fvex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bleenco%2Fvex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bleenco%2Fvex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bleenco%2Fvex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bleenco","download_url":"https://codeload.github.com/bleenco/vex/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247698185,"owners_count":20981315,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["http-proxy","http-tunnel","proxy","reverse","ssh-tunnel"],"created_at":"2024-08-03T17:01:59.227Z","updated_at":"2025-04-07T17:33:50.073Z","avatar_url":"https://github.com/bleenco.png","language":"Go","funding_links":[],"categories":["\u003ca id=\"01e6651181d405ecdcd92a452989e7e0\"\u003e\u003c/a\u003e工具"],"sub_categories":["\u003ca id=\"ea4dfcd8f33ec1852180c6283b2c8516\"\u003e\u003c/a\u003e未分类"],"readme":"## vex\n\nVex is a reverse HTTP proxy tunnel via secure SSH connections.\n\n### Establish tunnel with vexd server on bleenco.space.\n\nLet's say you are running HTTP server locally on port 6500, then command would be:\n\n```sh\n$ vex -s bleenco.space -p 2200 -ls localhost -lp 6500\n```\n\n2200 is port where vex daemon (server) is running and localhost:6500 is local HTTP server.\n\nExample output:\n\n```sh\n$ vex -s bleenco.space -p 2200 -ls localhost -lp 6500\n[vexd] Generated URL: http://23c41c01.bleenco.space\n```\n\nThen open generated URL in the browser to check if works, then share the URL if needed.\n\n### Establish tunnel with vexd server on bleenco.space (vex client)\n\n```sh\n$ vex -s bleenco.space -p 2200 -ls localhost -lp 7500\n```\n\n`vex` client options:\n\n```\nUsage: vex [options]\n\nOptions:\n\n-s, SSH server remote host (default: bleenco.space)\n\n-p, SSH server remote port (default: 2200)\n\n-ls, Local HTTP server host (default: localhost)\n\n-lp, Local HTTP server port (default: 7500)\n\n-a, Keep tunnel connection alive (default: false)\n```\n\n### Run cross-compilation build\n\n```sh\nmake clean \u0026\u0026 make build\n```\n\n### Running server\n\n```sh\n./build/vex-server-linux_amd64 --help\n```\n\n```\nUsage: vexd [options]\n\nOptions:\n\n-d, Domain name that HTTP server is hosted on. It is\nused for generating subdomain IDs (defaults to the\nenvironment variable VEX_DOMAIN and falls back to local.net)\n\n-k, Path to file of a ECDSA private key. All SSH communication\nwill be secured using this key (defaults to the VEX_KEY environment\nvariable falls back to id_rsa)\n\n-s, SSH server listen address (defaults to VEX_SSH_SERVER and\nfalls back to 0.0.0.0:2200)\n\n-http, HTTP server listen address (defaults to VEX_HTTP_SERVER and\nfalls back to 0.0.0.0:2000)\n```\n\n### Licence\n\n```\nThe MIT License\n\nCopyright (c) 2018 Bleenco GmbH https://bleenco.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbleenco%2Fvex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbleenco%2Fvex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbleenco%2Fvex/lists"}