aboutsummaryrefslogtreecommitdiffstats
path: root/acme.conf.sample
diff options
context:
space:
mode:
authorLexi Winter <ivy@FreeBSD.org>2025-06-03 12:34:59 +0100
committerLexi Winter <ivy@FreeBSD.org>2025-06-03 12:34:59 +0100
commit40c249d4401f6ee889c2e398e7605952772eb6ce (patch)
tree2251eb0de826b9a333909af3b02d170ffb22e00c /acme.conf.sample
parent6e19b042cbc9d5ff195eaf8f5c31243d36a7d56f (diff)
downloadlfacme-40c249d4401f6ee889c2e398e7605952772eb6ce.tar.gz
lfacme-40c249d4401f6ee889c2e398e7605952772eb6ce.tar.bz2
add an "http" challenge handler
Diffstat (limited to 'acme.conf.sample')
-rw-r--r--acme.conf.sample25
1 files changed, 19 insertions, 6 deletions
diff --git a/acme.conf.sample b/acme.conf.sample
index 2fb4ca6..257f7aa 100644
--- a/acme.conf.sample
+++ b/acme.conf.sample
@@ -2,7 +2,8 @@
# so you can include other files or call programs here if you like.
-### ACME_URL: The URL of the ACME server.
+### ACME_URL
+# The URL of the ACME server.
# No default, you must set this.
# Let's Encrypt production:
@@ -12,22 +13,34 @@
#ACME_URL="https://acme-staging-v02.api.letsencrypt.org/directory"
-### ACME_DATADIR: Runtime data directory.
+### ACME_DATADIR
+# Runtime data directory.
# This is where the ACME account key and the issued certificates are stored.
# The default is /var/db/lfacme.
#ACME_DATADIR="/var/db/lfacme"
-### ACME_HOOKDIR: The path to the directory containing certificate hooks.
+### ACME_HOOKDIR
+#The path to the directory containing certificate hooks.
# The default is "/usr/local/etc/lfacme/hooks".
# There is usually no need to change this.
#ACME_HOOKDIR="/some/directory"
-### ACME_KERBEROS_PRINCIPAL: The Kerberos principal we use for nsupdate.
-# The default is "host/$(hostname)", which assumes a default realm is
-# configured in /etc/krb5.conf.
+### ACME_HTTP_CHALLENGE_DIR
+# When using the "http" challenge handler, this is the directory which contains
+# ACME challenges. This must be served at /.well-known/acme-challenge on any
+# domain using http validation.
+# No default, you must set this if you use the "http" handler.
+
+#ACME_HTTP_CHALLENGE_DIR="/var/www/acme-challenge"
+
+
+### ACME_KERBEROS_PRINCIPAL
+# When using the "kerberos" challenge handler, this is the Kerberos principal
+# we use for nsupdate. The default is "host/$(hostname)", which assumes a
+# default realm is configured in /etc/krb5.conf.
#ACME_KERBEROS_PRINCIPAL="host/server.example.org@EXAMPLE.ORG"