Changed the default bind host in WebServerSimple to 0.0.0.0 for convenience.

This commit is contained in:
Relintai 2023-08-28 17:56:37 +02:00
parent 045ff319ce
commit d9512f8d40

View File

@ -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;