Make Elastic Stack listen on localhost AND external IPs?

Hello

I want to able to make my Elastic Stack (Elasticsearch, Logstash, Kibana, and Beats) all listen on the localhost AND on the external IP (or at least bind it to a IP)

All I see is creating a reverse proxy with Nginx and its something I rather avoid.

How can I do this?

For Elasticsearch, you can give a list of addresses to which to bind in elasticsearch.yml:

http.bind_host: ["127.0.0.1", "192.168.1.79"]

I can't comment on the other products, sorry.

Thanks....I didnt want to make a thread for EACH product but......

Have you looked at the documentation for each product, it does state how to do this.