DEFAULT_DOMAIN_KEY_LENGTH
as an environment variable
#4747
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Question
Is it possible to specify
DEFAULT_DOMAIN_KEY_LENGTH
as an environment variable or inaccount.conf
?Details
I'm trying to use the command
acme.sh --issue -d domain.com
.I want to use
rsa2048
as a default key algorithm, but it seems impossible without the explicit command line argument-k 2048
.For the first time,
keylength
is set hereacme.sh/acme.sh
Line 7217 in 0da839c
I think I can't override the variable because
DEFAULT_DOMAIN_KEY_LENGTH
at the moment is set hereacme.sh/acme.sh
Line 57 in 0da839c
Then it's possible to override it using the command line argument here
acme.sh/acme.sh
Lines 7504 to 7510 in 0da839c
After that, it goes straight into the
issue
command hereacme.sh/acme.sh
Lines 7856 to 7858 in 0da839c
And to the
createDomainKey
commandacme.sh/acme.sh
Line 4488 in 0da839c
I think it could be overridden here by setting
_cdl
var inaccount.conf
acme.sh/acme.sh
Lines 1529 to 1536 in 0da839c
Beta Was this translation helpful? Give feedback.
All reactions