1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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()}");