[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) { if (internalPort != -1) {
internalConnector = makeConnector( internalConnector = makeConnector(
server, server,
"localhost", "0.0.0.0",
internalPort, internalPort,
trustForwardHeaders trustForwardHeaders
); );
@@ -129,7 +129,7 @@ public class CustomJettyServerFactory implements JettyServerFactory {
if (externalPort != -1) { if (externalPort != -1) {
externalConnector = makeConnector( externalConnector = makeConnector(
server, server,
"localhost", "0.0.0.0",
externalPort, externalPort,
trustForwardHeaders trustForwardHeaders
); );