Add system email to certification obtaining

This commit is contained in:
Torsten Dittmann
2020-06-19 18:39:13 +02:00
committed by GitHub
parent 8c53875992
commit 64767c09a8
+2 -1
View File
@@ -107,7 +107,8 @@ class CertificatesV1
$staging = (Config::getParam('env') === App::ENV_TYPE_PRODUCTION) ? '' : ' --dry-run';
$response = shell_exec("certbot certonly --webroot --noninteractive --agree-tos{$staging} --email security@appwrite.io \
$response = shell_exec("certbot certonly --webroot --noninteractive --agree-tos{$staging} \
--email ".$request->getServer('_APP_SYSTEM_EMAIL_ADDRESS', 'security@localhost.test')." \
-w ".APP_STORAGE_CERTIFICATES." \
-d {$domain->get()}");