mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 23:48:39 +01:00
acme: Allow custom ACME server directory URL
The underlying `acme.sh` allows custom ACME server URLs (using `--server`). Adding the necessary field to specify a custom ACME server URL from UCI. Signed-off-by: Jannis Pinter <jannis+openwrt@pinterjann.is>
This commit is contained in:
committed by
Jannis Pinter
parent
28c075d2c8
commit
3f7d03eda6
@@ -210,6 +210,7 @@ issue_cert()
|
||||
local user_cleanup
|
||||
local ret
|
||||
local domain_dir
|
||||
local acme_server
|
||||
|
||||
config_get_bool enabled "$section" enabled 0
|
||||
config_get_bool use_staging "$section" use_staging
|
||||
@@ -223,6 +224,7 @@ issue_cert()
|
||||
config_get dns "$section" dns
|
||||
config_get user_setup "$section" user_setup
|
||||
config_get user_cleanup "$section" user_cleanup
|
||||
config_get acme_server "$section" acme_server
|
||||
|
||||
UPDATE_NGINX=$update_nginx
|
||||
UPDATE_UHTTPD=$update_uhttpd
|
||||
@@ -277,6 +279,11 @@ issue_cert()
|
||||
[ -n "$ACCOUNT_EMAIL" ] && acme_args="$acme_args --accountemail $ACCOUNT_EMAIL"
|
||||
[ "$use_staging" -eq "1" ] && acme_args="$acme_args --staging"
|
||||
|
||||
if [ -n $acme_server ]; then
|
||||
log "Using custom ACME server URL"
|
||||
acme_args="$acme_args --server $acme_server"
|
||||
fi
|
||||
|
||||
if [ -n "$dns" ]; then
|
||||
log "Using dns mode"
|
||||
acme_args="$acme_args --dns $dns"
|
||||
|
||||
Reference in New Issue
Block a user