mirror of
https://github.com/matrix-construct/construct
synced 2024-11-04 21:08:57 +01:00
16 lines
436 B
Bash
Executable file
16 lines
436 B
Bash
Executable file
#!/bin/sh
|
|
echo "Generating self-signed certificate .. "
|
|
openssl req -x509 -nodes -newkey rsa:1024 -keyout ../etc/ssl.key -out ../etc/ssl.cert
|
|
|
|
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/ssl.key";
|
|
ssl_cert = "etc/ssl.cert";
|
|
ssl_dh_params = "etc/dh.pem";
|
|
|
|
Enjoy using ssl.
|
|
"
|