From 63918cb5491b40977ccb864961d3e5887ed5b4bb Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Tue, 24 Dec 2019 16:48:50 -0800 Subject: [PATCH] Use the correct certificate key in the config --- app/Models/Node.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Node.php b/app/Models/Node.php index 7df3660fc..63d937218 100644 --- a/app/Models/Node.php +++ b/app/Models/Node.php @@ -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,