diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2024-02-28 22:06:33 +0200 |
---|---|---|
committer | Toke Høiland-Jørgensen <toke@toke.dk> | 2024-03-01 17:01:40 +0100 |
commit | 04ac8c177d9ac662790ef5fec9b66cab038c341f (patch) | |
tree | e6b6f23280497af012223c6935cc6a6e91de462b | |
parent | 4bec28b4d16d86cfb6f6f720c61072f5954a9b28 (diff) |
acme-common: simplify config example
Make it more practical to easier get an idea
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
-rw-r--r-- | net/acme-common/Makefile | 2 | ||||
-rw-r--r-- | net/acme-common/files/acme.config | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/net/acme-common/Makefile b/net/acme-common/Makefile index 324b742b6..f88a2408e 100644 --- a/net/acme-common/Makefile +++ b/net/acme-common/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=acme-common -PKG_VERSION:=1.0.4 +PKG_VERSION:=1.1.0 PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk> PKG_LICENSE:=GPL-3.0-only diff --git a/net/acme-common/files/acme.config b/net/acme-common/files/acme.config index c67c24e78..e88ef2c90 100644 --- a/net/acme-common/files/acme.config +++ b/net/acme-common/files/acme.config @@ -6,8 +6,7 @@ config cert 'example_wildcard' option enabled 0 option staging 1 list domains example.org - list domains sub.example.org - list domains *.sub.example.org + list domains *.example.org option validation_method dns option dns "dns_freedns" list credentials 'FREEDNS_User="ssladmin@example.org"' @@ -15,9 +14,10 @@ config cert 'example_wildcard' option calias "example.com" option dalias "dalias.example.com" -config cert 'example' +config cert 'example_subdomain' option enabled 0 option staging 1 - list domains example.org - list domains sub.example.org + list domains example.net + list domains www.example.net + list domains mail.example.net validation_method webroot |