Apache Reverse Proxy for Kibana 5

Hi there,

First of all, sorry for my English.

I'm working on a POC for a futur project. I'm testing different solutions like Kibana, Graylog and some others.

Kibana is very great, really. But unfortunately, I have to take off your solution of my list because it's just impossible to simply configure Kibana 5 behind an Apache Reverse Proxy (https//URL/kibana).

I'm working on this problem since one week, and I still have 404 problems. That's sad, but I think I'll have to give up.

There is no official documentation about this problem, and all the "working" solutions on Google did not works for me :frowning: (Plus: The larger part of the solutions are for a Nginx reverse proxy.)

So, here is my last S.O.S:

Did someone already succeed to configure an Apache Reverse Proxy (Apache 2.4.10) for Kibana 5 ? (https://server/kibana). I can't use subdomains. And if yes... Can you show me your Apache Configuration (And if needed, your kibana.yml) ?

Thx a lot !


My kibana.yml:

server.host: "localhost"
#server.basePath: "/kibana"

My apache reverse proxy conf:

ProxyPass /kibana http://127.0.0.1:5601/
ProxyPassReverse /kibana http://127.0.0.1:5601/

Result: https://server_ip/kibana => 404 page not found

Hey, I haven't tried configuring an Apache Reverse Proxy for Kibana, but there are a couple posts on the forum which look relevant:

Can you take a look and let me know if either of these help?

Thanks,
CJ

it's just impossible to simply configure Kibana 5 behind an Apache Reverse Proxy

Impossible? Right...

There is no official documentation

all the "working" solutions on Google

450 results found: reverse proxy site:elastic.co - Google Search
have you tried them all?

Did someone already succeed to configure an Apache Reverse Proxy (Apache 2.4.10) for Kibana 5 ?

yes. with this guide:

I have apache proxy pass working for Kibana 4.5 but I am assuming should be the same for 5.4 as well

server.host: "0.0.0.0"
server.basePath: "/blue"

   ProxyPass /blue/ https://localhost:5601/
   ProxyPassReverse /(.*) https://localhost:5601/blue/(.*)

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.