How to configure multiple Virtual Host for Proxy Endpoint

Not applicable

Customer Question:

We have question on how to set up Proxy Endpoints in Apigee Enterprise. How do we enable two virtual hosts for a proxy endpoint to use our default and https_vhost? Currently we have the following:

<ProxyEndpoint name="default">
	<HTTPProxyConnection> 
		<BasePath>/content</BasePath> 
		<VirtualHost>default</VirtualHost> 
	</HTTPProxyConnection> 
.
.
.
</ProxyEndpoint>
Solved Solved
0 2 2,448
1 ACCEPTED SOLUTION

Not applicable

You simply need to include the additional virtual host in the Proxy Endpoint as follows:

<ProxyEndpoint name="default">
	<HTTPProxyConnection> 
		<BasePath>/content</BasePath> 
			<VirtualHost>https_vhost</VirtualHost> 
			<VirtualHost>default</VirtualHost> 
	</HTTPProxyConnection> 
.
.
.
</ProxyEndpoint>

You can also find additional information here under the ProxyEndpoint Configuration section.

View solution in original post

2 REPLIES 2

Not applicable

You simply need to include the additional virtual host in the Proxy Endpoint as follows:

<ProxyEndpoint name="default">
	<HTTPProxyConnection> 
		<BasePath>/content</BasePath> 
			<VirtualHost>https_vhost</VirtualHost> 
			<VirtualHost>default</VirtualHost> 
	</HTTPProxyConnection> 
.
.
.
</ProxyEndpoint>

You can also find additional information here under the ProxyEndpoint Configuration section.