Mine works fine in http mode for Kibana. Now, I would like to make the https:// work.
I can see kibana.yml has a section for SSL. Not sure if that means supporting https: if I enable them like that below. I guess it is the mean for supporting. So, I did like these:
server.ssl.enabled: true
server.ssl.certificate: /tmp/keypair_good.pem
server.ssl.key: /tmp/keypair_good.pem
After setting that above, Kibana gave error like the following when its service was started:
FATAL Error: error:0907B068:PEM routines:PEM_READ_BIO_PRIVATEKEY:bad password read
I guess it is because the certificate and key were created with password. But Kibana does not provide a mechanism for me to give the key for opening the certificate and key.
Any hints are appreciated.
Best,
Wayne