Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantinos Kallas <konstantinos.kallas@hotmail.com>2017-11-11 16:38:47 +0300
committerKonstantinos Kallas <konstantinos.kallas@hotmail.com>2017-11-11 16:38:47 +0300
commit78f494dd2eba0970b14247f1027f09b6a82efaf0 (patch)
treee63355623ba15f915c175659ab5b25ccf60f963b /ejabberd.yml.example
parent189d02cee07fa073989d934ff8bed0b4476e3c43 (diff)
Configuration file changes
Explain the acme configuration options
Diffstat (limited to 'ejabberd.yml.example')
-rw-r--r--ejabberd.yml.example24
1 files 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/"
###. =======