Use the correct certificate key in the config

This commit is contained in:
Dane Everitt 2019-12-24 16:48:50 -08:00
parent 4173001f10
commit 63918cb549
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -163,7 +163,7 @@ class Node extends Validable
'port' => $this->daemonListen,
'ssl' => [
'enabled' => (! $this->behind_proxy && $this->scheme === 'https'),
'certificate' => '/etc/letsencrypt/live/' . $this->fqdn . '/fullchain.pem',
'cert' => '/etc/letsencrypt/live/' . $this->fqdn . '/fullchain.pem',
'key' => '/etc/letsencrypt/live/' . $this->fqdn . '/privkey.pem',
],
'upload_limit' => $this->upload_size,