Skip to content

Commit

Permalink
Merge pull request elastic#136 from rashidkpc/master
Browse files Browse the repository at this point in the history
Undo protocol detections
  • Loading branch information
Rashid Khan committed May 29, 2013
2 parents 4fe0913 + 8d667ff commit a7ca34f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var config = new Settings(
// By default this will attempt to reach ES at the same host you have
// elasticsearch installed on. You probably want to set it to the FQDN of your
// elasticsearch host
elasticsearch: window.location.protocol+"//"+window.location.hostname+":9200",
elasticsearch: "http://"+window.location.hostname+":9200",
// elasticsearch: 'http://localhost:9200',
kibana_index: "kibana-int",
modules: ['histogram','map','pie','table','stringquery','sort',
Expand Down
2 changes: 1 addition & 1 deletion js/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ angular.module('kibana.services', [])

})
.service('kbnIndex',function($http) {
// returns a promise containing an array of all indices matching the index
// returns a promise containing an array of all indices matching the index
// pattern that exist in a given range
this.indices = function(from,to,pattern,interval) {
var possible = [];
Expand Down

0 comments on commit a7ca34f

Please sign in to comment.