Information
Restrict access to default and system applications based on originating endpoint.
Restrict access to default and system application based on an originating endpoint.
Solution
- Configure a httpEndpoint element in the [Liberty configuration] ${server.config.dir}/configDropins/overrides/*.xml
For example,
<httpEndpoint id="localHostOnly" host="localhost" httpPort="9081" httpsPort="9444"/> <xhtml:ol start="2"> - Configure the default_host virtualHost element with allowFromEndPointRef pointing to the httpEndpoint value configured above.
<virtualHost id="default_host" allowFromEndpointRef="localHostOnly">
<hostAlias>*:9081</hostAlias>
<hostAlias>*:9444</hostAlias>
</virtualHost>