Direct URL will be always http until we get wildcard tls certs

This commit is contained in:
Marcos Lilljedahl
2017-08-10 14:52:52 -03:00
parent 41171b06b4
commit 7c89054f16

View File

@@ -240,7 +240,7 @@
$scope.idx[instance].swarmPorts = status.ports;
}
$scope.$apply();
});
});
$scope.socket = socket;
@@ -263,7 +263,7 @@
}
$scope.getProxyUrl = function(instance, port) {
var url = window.location.protocol + '//' + instance.proxy_host + '-' + port + '.direct.' + window.location.host;
var url = 'http://' + instance.proxy_host + '-' + port + '.direct.' + window.location.host;
return url;
}