From d9512f8d40e76a84c9434610566fe1dcc5a1c09c Mon Sep 17 00:00:00 2001 From: Relintai Date: Mon, 28 Aug 2023 17:56:37 +0200 Subject: [PATCH] Changed the default bind host in WebServerSimple to 0.0.0.0 for convenience. --- modules/http_server_simple/web_server_simple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http_server_simple/web_server_simple.cpp b/modules/http_server_simple/web_server_simple.cpp index 3208f5275..d3065a141 100644 --- a/modules/http_server_simple/web_server_simple.cpp +++ b/modules/http_server_simple/web_server_simple.cpp @@ -220,7 +220,7 @@ WebServerSimple::WebServerSimple() { _max_request_size = 3; _bind_port = 8080; - _bind_host = "127.0.0.1"; + _bind_host = "0.0.0.0"; _use_ssl = false;