Skip to content

Commit

Permalink
fix(acme): fixed deployment not taking _ecc into account
Browse files Browse the repository at this point in the history
refs acmesh-official/acme.sh#4552

- there was a change in the acme.sh script which changed the default
  certificate type
- unfortunately this has led to breaking the SSL creation process
  because the wrong path is used
- from the referenced issue, this is a workaround that fixes the problem
  for now
  • Loading branch information
daniellockyer committed Jul 3, 2023
1 parent d737ca5 commit 467d41b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extensions/nginx/acme.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ async function generateCert(ui, domain, webroot, email, staging) {
`--domain ${domain}`,
`--webroot ${webroot}`,
`--reloadcmd "${nginxProgramName} -s reload"`,
`--accountemail ${email}`
`--accountemail ${email}`,
'--keylength 2048'
];

if (staging) {
Expand Down

0 comments on commit 467d41b

Please sign in to comment.