java - Spring cloud turbine with ConfigPropertyBasedDiscovery and https -
i have turbine app connects hystrix cluster streams, needs using https. current config (using configpropertybaseddiscovery rather eureka):
spring: profiles: lcl instanceurlsuffix: cluster_name: /hystrix.stream configpropertybaseddiscovery: cluster_name: instances: hostname1:port/ctxt,hostname2:port/ctxt as far can tell, turbine has hardcoded http:// somewhere within code, try hit:
http://hostname1:port/ctxt/hystrix.stream
is there way specify https using above config , without need eureka, zuul, consul or 1 of fancy service discovery tools make work ssl?
Comments
Post a Comment