Kibana with Apache Proxy using http://localhost:5601/kibana

Hello,

I'd like to start use kibana with a reverse proxy through apache. By itself, thats not really an issue, I can do that. What I'm having trouble with is how to serve kibana out of a directory for example:

Kibana:
http://localhost:5601/kibana

Any help would be greatly appreciated. Here is what I have for the apache configuration. Due to our environment this is a requirement extra folder is a requirement.

<Location /kibana/>
	ProxyPass                   http://localhost:5601/kibana
	ProxyPassReverse      http://localhost:5601/kibana
</Location>

Thank you

The URL on the ProxyPass/ProxyPassReverse lines shouldn't end with /kibana. This should work:

<Location /kibana/>
	ProxyPass                   http://localhost:5601/
	ProxyPassReverse      http://localhost:5601/
</Location>