How to access externally to consul UI

后端 未结 6 1830
小蘑菇
小蘑菇 2020-12-24 07:54

How can I access to consul UI externally?

I want to access consul UI writing

:8500

I have try doing

6条回答
  •  盖世英雄少女心
    2020-12-24 08:33

    Add

    {
      "client_addr": "0.0.0.0"
    }
    

    to your configuration or add the option -client 0.0.0.0 to the command line of consul to make your Web UI accessible from the outside (see the docs for more information).

    Please note that this will also make your Consul REST API accessible from the outside. Depending on your environment you might want to activate Consul's ACLs to restrict access.

提交回复
热议问题