We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The options seems to be missing in const server = ldap.createServer(); So, ldaps doesn't work, even ldapCertFilename and ldapKeyFilename ist defined.
const server = ldap.createServer();
Could you change it for future release?
if (config.ldapCertFilename && config.ldapKeyFilename) { const ldapCert = fs.readFileSync(new URL(`./${config.ldapCertFilename}`, import.meta.url), { encoding: "utf8" }), ldapKey = fs.readFileSync(new URL(`./${config.ldapKeyFilename}`, import.meta.url), { encoding: "utf8" }); options = { certificate: ldapCert, key: ldapKey }; } const server = ldap.createServer(options);
The text was updated successfully, but these errors were encountered:
If you already have fixed that, could you provide us a PR please? :)
Sorry, something went wrong.
Fixed in version 3.1.0.
No branches or pull requests
The options seems to be missing in
const server = ldap.createServer();
So, ldaps doesn't work, even ldapCertFilename and ldapKeyFilename ist defined.
Could you change it for future release?
The text was updated successfully, but these errors were encountered: