I have some configuration like :
Listen 9000 <VirtualHost *: 9000> ..... ProxyPass ..... ProxyPassReverse ....
it works well. But I faced with problem. We have healthCheck (GET /health http1.1) and this is request does not have "Host" header and before that this check had called to Liberty directly. Now we use IHS like proxy.
All requests without this headers are declined(access error). Do I have any option how to handle it ? I tried to set this header RequestHeader set "Host" "example"
But any way I get error
My second qustion is why this set up works just within the virtualhost?