You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running openvsx in a Docker container with an upstream registry configured and proxy settings enabled, the application fails to connect to the upstream URL https://openvsx.org:443. The error reported is:
Connect to https://openvsx.org:443 [open-vsx.org/198.41.30.195] failed: Connection timed out
The proxy settings are configured via JVM arguments, and the upstream URL is set to https://openvsx.org. However, if I replace the upstream URL with the address of a custom proxy service (emulating curl behavior), the connection succeeds without issues. This suggests a potential problem with how openvsx handles proxy connections to the default upstream registry.
Steps to Reproduce
Deploy openvsx in a Docker container.
Configure the upstream registry with the following settings:
Problem
When running
openvsx
in a Docker container with an upstream registry configured and proxy settings enabled, the application fails to connect to the upstream URLhttps://openvsx.org:443
. The error reported is:The proxy settings are configured via JVM arguments, and the upstream URL is set to
https://openvsx.org
. However, if I replace the upstream URL with the address of a custom proxy service (emulatingcurl
behavior), the connection succeeds without issues. This suggests a potential problem with howopenvsx
handles proxy connections to the default upstream registry.Steps to Reproduce
openvsx
in a Docker container.-Dhttp.proxyHost=proxy.company.com -Dhttp.proxyPort=8080 -Dhttps.proxyHost=proxy.company.com -Dhttps.proxyPort=8080
).http://localhost:8081
), which forwards requests toopenvsx.org
viaCONNECT
method.Environment
-Dhttp.proxyHost=proxy.company.com -Dhttp.proxyPort=8080 -Dhttps.proxyHost=proxy.company.com -Dhttps.proxyPort=8080
The text was updated successfully, but these errors were encountered: