genssl: use DH params length of 2048 to appease the weechat idiots

This commit is contained in:
William Pitcock 2012-11-19 21:12:30 +00:00
parent 4cbed3b849
commit 5fd2dd9556
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ echo "Generating self-signed certificate .. "
openssl req -x509 -nodes -newkey rsa:1024 -keyout "${sysconfdir}"/ssl.key -out "${sysconfdir}"/ssl.cert
echo "Generating Diffie-Hellman file for secure SSL/TLS negotiation .. "
openssl dhparam -out "${sysconfdir}"/dh.pem 1024
openssl dhparam -out "${sysconfdir}"/dh.pem 2048
# If sysconfdir is relative to prefix, make the path relative. I.e.,
# prefix=/usr and sysconfdir=/etc -> relative_sysconfdir=/etc,