Kibana 3 against ElasticSearch 1.4 throws an Connection Failed screen. The error text says to set http.cors.allow-origin
, but it misses out the important http.cors.enabled: true
Working config:
$ grep cors elasticsearch-1.4.0.Beta1/config/elasticsearch.yml
http.cors.allow-origin: "/.*/"
http.cors.enabled: true
I have kibana faced by nginx (we need nginx for basic auth) on different host then elasticsearch and this workaround did`t resolve the problem. It only resolves the problem when kibana and ES on the same host.