Consul port configuration
Closed this issue · 1 comments
Condor2708 commented
Is there anyway to change the default consul 8500 port?
Regards
highlyunavailable commented
Create your ConsulClient
object and pass in a delegate to set the Address property of the configuration to a valid URI during construction:
var client = new ConsulClient((c) => { c.Address = new Uri("http://127.0.0.1:1337"); });