fix(userspace/falco): listen to proper host in webserver

Signed-off-by: Jason Dellaluce <jasondellaluce@gmail.com>
Co-authored-by: Leonardo Grasso <me@leonardograsso.com>

Co-authored-by: Leonardo Grasso <me@leonardograsso.com>
This commit is contained in:
Jason Dellaluce 2022-04-29 13:10:54 +02:00 committed by poiana
parent de754fb4e7
commit dbbc93f69d

View File

@ -66,7 +66,7 @@ void falco_webserver::start(
{
try
{
this->m_server->listen("localhost", listen_port);
this->m_server->listen("0.0.0.0", listen_port);
}
catch(std::exception &e)
{