Skip to content

Commit

Permalink
Merge pull request #1680 from rashidkpc/fix/elasticsearch-endpoint-pr…
Browse files Browse the repository at this point in the history
…otocol

Use same protocol for elasticsearch as everything else. Closes #1586
  • Loading branch information
spenceralger committed Oct 15, 2014
2 parents 1c8df75 + 0962ebf commit 28ddc1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kibana/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ define(function (require) {
'ngRoute'
]);

configFile.elasticsearch = ('http://' + window.location.hostname + '/elasticsearch/');
configFile.elasticsearch = (window.location.protocol + '//' + window.location.hostname + '/elasticsearch/');

kibana
// This stores the Kibana revision number, @REV@ is replaced by grunt.
Expand Down

0 comments on commit 28ddc1f

Please sign in to comment.