Ask for email when generating LetsEncrypt SSLs (#452)

This commit is contained in:
Saeed Vaziry
2025-01-29 21:00:43 +01:00
committed by GitHub
parent 270928af13
commit 53e20cbc2a
7 changed files with 59 additions and 5 deletions

View File

@ -168,7 +168,7 @@ public function setupSSL(Ssl $ssl): void
$domains .= ' -d '.$domain;
}
$command = view('ssh.services.webserver.nginx.create-letsencrypt-ssl', [
'email' => $ssl->site->server->creator->email,
'email' => $ssl->email,
'domain' => $ssl->site->domain,
'domains' => $domains,
]);