How change IP address in Remote Control API plugin?

I use plugin Web remote Control. Plugin starting in console. When i start command “WebControl.StartServer” he write “LogHttpListener: Created new HttpListener on 127.0.0.1:8080:8080” . but i not want localhost IP. I want local network IP (for example 192.168.0.103). How Change IP address for Listener in UE4? ( i tried set request on local network. not working. It working only localhost(127.0.0.1)) may be add settings in anything configs???

I’m also looking for the same!

In your engine version config folder i.e. “C:\Program Files\Epic Games\UE_4.25\Engine\Config” for example, add this to BaseEngine.ini

[HTTPServer.Listeners]

DefaultBindAddress={address}

where {address} is the address you want.

Thank you. It Works

Do you know if you can change the port aswell? I already have a thread running with this question

Does this work for a deployed build version of the game too? It works if using the Unreal Editor. But attempting to use the REST api from another node on the network doesn’t seem to work.