From 78f494dd2eba0970b14247f1027f09b6a82efaf0 Mon Sep 17 00:00:00 2001 From: Konstantinos Kallas Date: Sat, 11 Nov 2017 15:38:47 +0200 Subject: [PATCH] Configuration file changes Explain the acme configuration options --- ejabberd.yml.example | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/ejabberd.yml.example b/ejabberd.yml.example index 9891e0ed2..b9e117deb 100644 --- a/ejabberd.yml.example +++ b/ejabberd.yml.example @@ -663,18 +663,22 @@ language: "en" ###. ==== ###' ACME -## -## A contact with which it will create an ACME account -## The ACME Certificate Authority URL. -## This could either be: -## - https://acme-v01.api.letsencrypt.org - for the production CA -## - https://acme-staging.api.letsencrypt.org - for the staging CA -## - http://localhost:4000 - for a local version of the CA -## acme: - contact: "mailto:cert-admin-ejabberd@example.com" - ca_url: "http://localhost:4000" + ## A contact mail that the ACME Certificate Authority can contact in case of + ## an authorization issue, such as a server-initiated certificate revocation. + ## It is not mandatory to provide an email address but it is highly suggested. + contact: "mailto:example-admin@example.com" + + + ## The ACME Certificate Authority URL. + ## This could either be: + ## - https://acme-v01.api.letsencrypt.org - (Default) for the production CA + ## - https://acme-staging.api.letsencrypt.org - for the staging CA + ## - http://localhost:4000 - for a local version of the CA + ca_url: "https://acme-v01.api.letsencrypt.org" + +## The directory in which certificates will be saved cert_dir: "/usr/local/var/lib/ejabberd/" ###. =======