mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 11:58:53 +01:00
19 lines
525 B
Bash
Executable file
19 lines
525 B
Bash
Executable file
#!/bin/sh
|
|
echo "Generating certificate request .. "
|
|
openssl req -new -nodes -out ../etc/req.pem
|
|
|
|
echo "Generating self-signed certificate .. "
|
|
openssl req -x509 -days 365 -in ../etc/req.pem -key ../etc/rsa.key -out ../etc/cert.pem
|
|
|
|
echo "Generating Diffie-Hellman file for secure SSL/TLS negotiation .. "
|
|
openssl dhparam -out ../etc/dh.pem 1024
|
|
|
|
echo "
|
|
Now change these lines in the IRCd config file:
|
|
|
|
ssl_private_key = "etc/rsa.key";
|
|
ssl_cert = "etc/cert.pem";
|
|
ssl_dh_params = "etc/dh.pem";
|
|
|
|
Enjoy using ssl.
|
|
"
|