user directory: listen on ipv4 and ipv6

This commit is contained in:
Girish Ramakrishnan
2022-02-15 14:27:51 -08:00
parent 661799cd54
commit 9dbb299bb9

View File

@@ -312,7 +312,7 @@ async function start() {
});
debug(`starting server on port ${constants.USER_DIRECTORY_LDAPS_PORT}`);
await util.promisify(gServer.listen.bind(gServer))(constants.USER_DIRECTORY_LDAPS_PORT, '0.0.0.0');
await util.promisify(gServer.listen.bind(gServer))(constants.USER_DIRECTORY_LDAPS_PORT, '::');
}
async function stop() {