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 f3901de commit 2942c93Copy full SHA for 2942c93
src/tasks/build.php
@@ -400,8 +400,8 @@ public function config_https($row)
400
// concat certs into single domain.tld.pem
401
file_put_contents(
402
LETS_ENCRYPT_CERTS_PATH."/{$domains[0]}/{$domains[0]}.pem",
403
- file_get_contents(LETS_ENCRYPT_CERTS_PATH."{$domains[0]}/fullchain.pem")."\n".
404
- file_get_contents(LETS_ENCRYPT_CERTS_PATH."{$domains[0]}/private.pem")
+ file_get_contents(LETS_ENCRYPT_CERTS_PATH."/{$domains[0]}/fullchain.pem")."\n".
+ file_get_contents(LETS_ENCRYPT_CERTS_PATH."/{$domains[0]}/private.pem")
405
);
406
407
echo DEBUG ? $this->log('Certificate: '.PHP_EOL.file_get_contents(LETS_ENCRYPT_CERTS_PATH.'/'.$domains[0].'/'.$domains[0].'.pem')) : null;
0 commit comments