[WIFI-11247] change host to 0.0.0.0 (#106)

This commit is contained in:
Jun Woo Shin
2022-10-19 09:47:59 -04:00
committed by GitHub
parent 6df81b7fef
commit 37a904087d

View File

@@ -119,7 +119,7 @@ public class CustomJettyServerFactory implements JettyServerFactory {
if (internalPort != -1) {
internalConnector = makeConnector(
server,
"localhost",
"0.0.0.0",
internalPort,
trustForwardHeaders
);
@@ -129,7 +129,7 @@ public class CustomJettyServerFactory implements JettyServerFactory {
if (externalPort != -1) {
externalConnector = makeConnector(
server,
"localhost",
"0.0.0.0",
externalPort,
trustForwardHeaders
);