Hi there. Working with HTTPServerModule. Then you do bindRoute() parameter is port only, without IPAddress. And there is nothing to change it. And default address is ‘localhost’, so this server works only on localhost by default. walking on source files of engine found this:
so my simple solution for this is to add
GConfig->SetString(TEXT(“HTTPServer.Listeners”), TEXT(“DefaultBindAddress”), TEXT(“any”), GEngineIni); before binding. (ectually bindAddress is accessed in startListening function so before the one)


