1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 14:53:13 +02:00

Update the default SSL filenames to use the Certbot names.

This commit is contained in:
Sadie Powell
2024-01-09 20:51:50 +00:00
parent fa7ad6b3df
commit fce5f4cc0f
3 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -142,8 +142,8 @@ public:
{
Configuration::Block *config = conf->GetModule(this);
this->certfile = config->Get<const Anope::string>("cert", "data/anope.crt");
this->keyfile = config->Get<const Anope::string>("key", "data/anope.key");
this->certfile = config->Get<const Anope::string>("cert", "data/fullchain.pem");
this->keyfile = config->Get<const Anope::string>("key", "data/privkey.pem");
if (Anope::IsFile(this->certfile.c_str()))
{