Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

Apigee <-SSL-> Apache Server How to hide actual url?

Not applicable

Hello,

I set two-way SSL between Apigee Proxy and Apache backend server.

For example,

the url of apigee proxy is "https://apigee.com/proxy_test"

the url of apache backend is "https://example.com"

When I hit "https://apigee.com/proxy_test", it is redirected to "https://example.com".

URL address on web browser shows "https://example.com".
I want to show Apigee proxy address on the browser instead of actual url.

On ssl.conf file on Apache server, I comment out all ProxyPass and ProxyPassReverse as below.

and I stop and restarted Apache server.

How do I hide actual URL?

<VirtualHost *:443>
	...
</VirtualHost>
 <TargetEndpoint name="dev">
   ...
</TargetEndpoint> 
	 
Solved Solved
0 10 549
1 ACCEPTED SOLUTION

That shouldn't happen. Because Browser to Apigee is a different connection than Apigee to your target.

I am wondering if mod_rewrite is doing a redirection. Could you switch RewriteEngine to off and retry?

View solution in original post

10 REPLIES 10