Hi,
I have used X-pack for ES and kibana and using SSL enabling with apache. The configs are as below
Apache config:
<VirtualHost *:80>
ServerName my-example.com
ServerAlias my-example.com
Redirect permanent / https://my-example.com
ProxyRequests Off
ProxyVia On
<VirtualHost *:443>
ServerName my-example.com
ServerAlias my-example.com
Options FollowSymLinks
AuthType Basic
AuthName "admin"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
ProxyPass http://127.0.0.1:5601/
ProxyPassReverse http://127.0.0.1:5601/
SSLEngine on
SSLCertificateFile certificate path
SSLCertificateKeyFile key path
Kibana.yml:
server.host: < IP Address of the instance>
server.name: "my-example.com"
elasticsearch.url: "http://ipaddress:9200"
server.ssl.cert: certificate path
server.ssl.key: key path
The issue is when i try to login to https://my-example.com, the kibana page does not open but when i use https://my-example.com:5601 then the kibana page opens.
Could you please let me know if iam missing out any configs?