We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fd9dd1 commit 91c3b7dCopy full SHA for 91c3b7d
install/lib/installer_base.lib.php
@@ -3133,8 +3133,7 @@ public function make_ispconfig_ssl_cert() {
3133
// certbot returns with 0 on issue for already existing certificate
3134
3135
$acme_cert_dir = '/etc/letsencrypt/live/' . $hostname;
3136
- foreach (array( 'fullchain.pem', 'privkey.pem' ) as $f) {
3137
- $f = $acme_cert_dir . '/' . $f;
+ foreach (array( $ssl_crt_file, $ssl_key_file) as $f) {
3138
if (file_exists($f) && ! is_link($f)) {
3139
unlink($f);
3140
}
0 commit comments