How can I access to consul UI externally?
I want to access consul UI writing
:8500
I have try doing
Finally I find the solution. Add to the config file with the bind addr that is the IP of the machine, and the client_addr that is the hosts he listen to. So I use 0.0.0.0 to listen to all the IPs.
"bind_addr":"", "client_addr":"0.0.0.0",