Automated merge with ssh://hg.atheme.org//hg/charybdis

This commit is contained in:
William Pitcock 2008-04-25 14:46:46 -05:00
commit a7a27f1f80
1 changed files with 19 additions and 0 deletions

19
tools/genssl.sh Normal file
View File

@ -0,0 +1,19 @@
#!/bin/sh
echo "Generating certificate request .. "
openssl req -new -nodes -out req.pem
echo "Generating self-signed certificate .. "
openssl req -x509 -days 365 -in req.pem -key privkey.pem -out cert.pem
echo "Generating Diffie-Hellman file for secure SSL/TLS negotiation .. "
openssl dhparam -out dh.pem 2048
mv privkey.pem rsa.key
echo "
Now copy rsa.key, cert.pem and dh.pem into your IRCd's etc/ folder,
then change these lines in the ircd.conf file:
ssl_private_key = "etc/rsa.key";
ssl_cert = "etc/cert.pem";
ssl_dh_params = "etc/dh.pem";
Enjoy using ssl.
"