1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Fixed x-forwarded-host where multiple hosts are specified.

This commit is contained in:
Ylian Saint-Hilaire 2022-02-16 13:00:36 -08:00
parent bbb9014fcd
commit f791515546
2 changed files with 2 additions and 3 deletions

View file

@ -1623,8 +1623,7 @@ function CreateMeshCentralServer(config, args) {
}
// Setup and start the legacy swarm server
if ((obj.certificates.swarmserver != null) && (obj.args.swarmport !== 0)) {
if (obj.args.swarmport == null) { obj.args.swarmport = 8080; }
if ((obj.certificates.swarmserver != null) && (obj.args.swarmport != null) && (obj.args.swarmport !== 0)) {
obj.swarmserver = require('./swarmserver.js').CreateSwarmServer(obj, obj.db, obj.args, obj.certificates);
}