Add SSL generation tool.
This commit is contained in:
parent
7c746d1c7d
commit
828a2e6ad5
1 changed files with 19 additions and 0 deletions
19
tools/genssl.sh
Normal file
19
tools/genssl.sh
Normal 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.
|
||||||
|
"
|
Loading…
Reference in a new issue