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