Using Zuul as reverse proxy

Hi,
I am trying to use netflix Zuul as a reverse proxy for Kibana. The only thing I get back is a lot of encoded content. Did anyone try to use Zuul with Kibana?

thanks.

Wow! This went unanswered for over a year :frowning:

Did you ever find an answer?

Regards,
Lee

I using spring boot and zuul with kibana in my project.

spring boot config

zuul:
routes:
elk:
path: /elk/**
url: http://localhost:9200
kb4:
path: /logquery/**
url: http://localhost:5601

kibana.yml config

server.basePath: "/logquery"

you must set server.basePath prefix for zuul router

visit ip//logquery , it's zuul proxy kibana address

3 Likes

@devgg

Thank you, you saved my day. Elasticsearch and kibana running behind zuul like a king.