ldap: fixced the encryption key required

This commit is contained in:
silver 2023-05-23 23:30:27 +01:00
parent 44921afecd
commit 41449dd28c

View file

@ -116,7 +116,7 @@ Gonna use a priper nixos module for this
olcTLSCertificateKeyFile = "/var/lib/acme/${cfg.domain.base}/key.pem";
# got teh ciphers from https://access.redhat.com/articles/1474813
# the ones provided on the nixos page didnt work
olcTLSCipherSuite = "ECDHE-RSA-AES256-SHA384:AES256-SHA256:!RC4:HIGH:!MD5:!EDH:!EXP:!SSLV2:!eNULL";
olcTLSCipherSuite = "ECDHE-RSA-AES256-SHA384:AES256-SHA256:!RC4:HIGH:!MD5:!aNULL:!EDH:!EXP:!SSLV2:!eNULL";
olcTLSCRLCheck = "none";
olcTLSVerifyClient = "never";
olcTLSProtocolMin = "3.3";