aboutsummaryrefslogtreecommitdiffstats
path: root/acme.conf.sample
diff options
context:
space:
mode:
authorLexi Winter <ivy@FreeBSD.org>2025-06-03 07:21:08 +0100
committerLexi Winter <ivy@FreeBSD.org>2025-06-03 07:21:08 +0100
commite1f2a8dd272cdbe4f5e54853008a3e5f24f4af71 (patch)
tree2afe7daa22b636948498595a4b1e07b3fe9b2eea /acme.conf.sample
downloadlfacme-e1f2a8dd272cdbe4f5e54853008a3e5f24f4af71.tar.gz
lfacme-e1f2a8dd272cdbe4f5e54853008a3e5f24f4af71.tar.bz2
initial commit
Diffstat (limited to 'acme.conf.sample')
-rw-r--r--acme.conf.sample33
1 files changed, 33 insertions, 0 deletions
diff --git a/acme.conf.sample b/acme.conf.sample
new file mode 100644
index 0000000..f6f8432
--- /dev/null
+++ b/acme.conf.sample
@@ -0,0 +1,33 @@
+# This is a sample configuration file for lfacme. It is a shell script,
+# so you can include other files or call programs here if you like.
+
+
+### ACME_URL: The URL of the ACME server.
+# No default, you must set this.
+
+# Let's Encrypt production::
+#ACME_URL="https://acme-v02.api.letsencrypt.org/directory"
+
+# Let's Encrypt staging:
+#ACME_URL="https://acme-staging-v02.api.letsencrypt.org/directory"
+
+
+### ACME_DIR: The path to lfacme's configuration directory.
+# This is also where generated certificates are stored.
+# No default, you must set this.
+
+#ACME_DIR="/usr/local/etc/acme"
+
+
+### ACME_HOOKDIR: The path to the directory containing certificate hooks.
+# The default is "${ACME_DIR}/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_KERBEROS_PRINCIPAL="host/server.example.org@EXAMPLE.ORG"