-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
8.0.0.GA
-
None
-
False
-
None
-
False
-
-
-
-
-
-
-
We are documentating env variables that don't exist:
HTTP_PROXY_PORT
HTTP_PROXY_USERNAME
HTTP_PROXY_PASSWORD
HTTP_PROXY_NONPROXYHOST
We need to remove those env variables and document the correct ones:
- no_proxy: A comma separated lists of hosts, IP addresses or domains that can be accessed directly. This will be used for both Maven builds and Java runtime. For example: "foo.example.com,*.example.org"
- https_proxy: The location of the https proxy. This takes precedence over *http_proxy* and will be used for both Maven builds and Java runtime. For example: "myuser:mypass@127.0.0.1:8080"
- http_proxy: The location of the http proxy. This will be used for both Maven builds and Java runtime. For example: "http://127.0.0.1:8080"