You've already forked nginx-proxy-manager
mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-07-29 19:01:13 +03:00
Fix issues with certbot command when using LE_SERVER
This commit is contained in:
@ -839,8 +839,8 @@ const internalCertificate = {
|
|||||||
'--email "' + certificate.meta.letsencrypt_email + '" ' +
|
'--email "' + certificate.meta.letsencrypt_email + '" ' +
|
||||||
'--preferred-challenges "dns,http" ' +
|
'--preferred-challenges "dns,http" ' +
|
||||||
'--domains "' + certificate.domain_names.join(',') + '" ' +
|
'--domains "' + certificate.domain_names.join(',') + '" ' +
|
||||||
(letsencryptStaging ? '--staging' : '') +
|
(letsencryptServer !== null ? `--server '${letsencryptServer}' ` : '') +
|
||||||
(letsencryptServer !== null ? `--server '${letsencryptServer}'` : '');
|
(letsencryptStaging && letsencryptServer === null ? '--staging ' : '');
|
||||||
|
|
||||||
logger.info('Command:', cmd);
|
logger.info('Command:', cmd);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user