Skip to content
New issue

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

fix zitiConfig generation when arbitrary Bootstrapper port is used #182

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/http-proxy/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ common.generateZitiConfigObject = function(url, req, options) {
httpAgent: {
self: {
scheme: `${agent_scheme}`,
host: `${agent_host}`,
host: `${target.vhost}`,
port: `${agent_listen_port}`
},
target: {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ziti-http-agent",
"version": "0.32.1",
"version": "0.32.2",
"compatibleControllerVersion": ">=0.27.9",
"description": "HTTP proxying over Ziti network into Dark web server",
"main": "index.js",
Expand All @@ -19,7 +19,7 @@
},
"license": "Apache-2.0",
"dependencies": {
"@openziti/ziti-browzer-runtime": "0.37.0",
"@openziti/ziti-browzer-runtime": "0.37.1",
"@openziti/ziti-browzer-sw": "^0.28.0",
"acme-http-01-standalone": "^3.0.5",
"compare-versions": "^6.0.0-rc.1",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -325,10 +325,10 @@
dependencies:
superagent "^7.1.3"

"@openziti/[email protected].0":
version "0.37.0"
resolved "https://registry.yarnpkg.com/@openziti/ziti-browzer-runtime/-/ziti-browzer-runtime-0.37.0.tgz#67a408cb3682cc9907222114a6e3074582d7bc26"
integrity sha512-u0EByogCJ7ZCJx7YbEc7m914V5KQ90kS2K6ktx0iHmwp7rD6iKx3UrTW4Rfw+5IL6kkloACavR2VlOPEAfgFMg==
"@openziti/[email protected].1":
version "0.37.1"
resolved "https://registry.yarnpkg.com/@openziti/ziti-browzer-runtime/-/ziti-browzer-runtime-0.37.1.tgz#a86fd19e1f97f3f6b5337185530e6bcbf0562f9c"
integrity sha512-S0xozSQIshyX1v1O+2kNsy8axCV+cDTKTe5ZJs7BdXJ3/GXiO1cxjfoYELXhI51KIrAyyrxEy7KB+5mGfpaf2w==
dependencies:
"@auth0/auth0-spa-js" "^2.0.4"
"@azure/msal-browser" "^2.38.0"
Expand Down
Loading