I generated certs for my app using certbot/Letsencrypt. I got two pem files which I added in my kibana.yml file. When I try to access kibana through I get timeout error, while I can access it with IP. Am I missing something?

This is my kibana.yml:

server.name: kibana server.host: "0.0.0.0" server.ssl.enabled: true server.ssl.certificate: "/usr/share/kibana/config/certs/fullchain.pem" server.ssl.key: "/usr/share/kibana/config/certs/privkey.pem" 
3

1 Answer

If you upgraded with the latest version i.e. 7.x then u need to add server.publicBaseUrl in your kibana.yml

for e.g. server.publicBaseUrl=xyz.com

so it will allow you to redirect your website.

For me it is working fine after adding this parameter inside kibana.yml

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.