mirror of
https://github.com/Telecominfraproject/wlan-cloud-rrm.git
synced 2025-11-01 11:07:50 +00:00
[WIFI-11247] change host to 0.0.0.0 (#106)
This commit is contained in:
@@ -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
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user