Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
Update UIAppCmd.java to set UI on 0.0.0.0 (LangStream#667)
Browse files Browse the repository at this point in the history
using localhost or 127.0.0.1 doest work in WSL Ubuntu
  • Loading branch information
mark878 authored Oct 29, 2023
1 parent bfe422e commit b623381
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public static Undertow startServer(

Undertow server =
Undertow.builder()
.addHttpListener(port, "localhost")
.addHttpListener(port, "0.0.0.0")
.setHandler(routingHandler)
.build();
server.start();
Expand Down

0 comments on commit b623381

Please sign in to comment.