Scenario
The Data Virtuality Server is deployed within an environment that uses an HTTP proxy server and the Data Virtuality Server needs to be configured to use this proxy.
Configuration
The configuration is done through the dvserver-standalone.xml of the JBoss server instance, which is located in %dvserver_installpath%/standalone/configuration
Find the </extensions> end tag and place the configuration right after it:
...
</
extensions
>
<
system-properties
property
name
=
"http.proxyHost"
value
=
"ProxyIP"
/>
<
system-properties
property
name
=
"http.proxyPort"
value
=
"ProxyPort"
/>
<
system-properties
property
name
=
"http.nonProxyHosts"
value
=
"ListOfHostsThatAreDirectlyContacted"
/>
...
Note that the value for http.nonProxyHosts can contain a list with multiple hosts, separated by '|' that are communicated with directly. For example value="localhost|clr.mycomp.org|*.mycomp.local", where '*' denotes the wildcard.
There are also properties https.proxyHost and https.proxyPort for configuring secure proxy connections.
Comments
0 comments
Please sign in to leave a comment.