Nginx Kibana反向代理

时间:2019-04-30 06:59:26

标签: kibana nginx-reverse-proxy

我正在nginx配置文件中使用此部分

 location ~ ^/kibana(.*) {

            rewrite /kibana/(.*) /$1  break;
            proxy_pass http://core-services-local-nginx-ingress-controller.kube-system:80;

            proxy_redirect off;
            proxy_set_header Host "kibana-service-local";
            }

但是问题是,当我执行localhost / kibana /时,它正在重定向到localhost / app / kibana并显示未找到4o4。

enter image description here

为什么会这样?我想让kibana仪表板出现在点击localhost / kibana /时。

1 个答案:

答案 0 :(得分:0)

将kibana.yml中的server.basePath设置设置为/ kibana。