summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-01-09 20:51:50 +0000
committerSadie Powell <sadie@witchery.services>2024-01-09 21:25:44 +0000
commitfce5f4cc0f7518536040c0d66c7efb438c985e33 (patch)
treeaea3f87ec12a2433036fcd048a2736ee5c6ed85d /data
parentfa7ad6b3dffaa769b62ea00e7c52e29fca67c7bf (diff)
Update the default SSL filenames to use the Certbot names.
Diffstat (limited to 'data')
-rw-r--r--data/modules.example.conf16
1 files changed, 8 insertions, 8 deletions
diff --git a/data/modules.example.conf b/data/modules.example.conf
index 1b8563ddb..f1706e7b3 100644
--- a/data/modules.example.conf
+++ b/data/modules.example.conf
@@ -584,12 +584,12 @@ module { name = "m_sasl" }
*
* You can generate your own certificate and key pair by using:
*
- * certtool --generate-privkey --bits 2048 --outfile anope.key
- * certtool --generate-self-signed --load-privkey anope.key --outfile anope.crt
+ * certtool --generate-privkey --bits 2048 --outfile privkey.pem
+ * certtool --generate-self-signed --load-privkey privkey.pem --outfile fullchain.pem
*
*/
- cert = "data/anope.crt"
- key = "data/anope.key"
+ cert = "data/fullchain.pem"
+ key = "data/privkey.pem"
/*
* Diffie-Hellman parameters to use when acting as a server. This is only
@@ -623,11 +623,11 @@ module { name = "m_sasl" }
*
* You can generate your own certificate and key pair by using:
*
- * openssl genrsa -out anope.key 2048
- * openssl req -new -x509 -key anope.key -out anope.crt -days 1095
+ * openssl genrsa -out privkey.pem 2048
+ * openssl req -new -x509 -key privkey.pem -out fullchain.pem -days 1095
*/
- cert = "data/anope.crt"
- key = "data/anope.key"
+ cert = "data/fullchain.pem"
+ key = "data/privkey.pem"
/*
* As of 2014 SSL 3.0 is considered insecure, but it might be enabled