mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-28 11:03:44 +02:00
Configuration JSON should be including the FQDN instead of localhost for the certificate path.
This commit is contained in:
@@ -132,8 +132,8 @@ class Node extends Model
|
|||||||
'listen' => $this->daemonListen,
|
'listen' => $this->daemonListen,
|
||||||
'ssl' => [
|
'ssl' => [
|
||||||
'enabled' => $this->scheme === 'https',
|
'enabled' => $this->scheme === 'https',
|
||||||
'certificate' => '/etc/letsencrypt/live/localhost/fullchain.pem',
|
'certificate' => '/etc/letsencrypt/live/' . $this->fqdn . '/fullchain.pem',
|
||||||
'key' => '/etc/letsencrypt/live/localhost/privkey.pem',
|
'key' => '/etc/letsencrypt/live/' . $this->fqdn . '/privkey.pem',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'docker' => [
|
'docker' => [
|
||||||
|
|||||||
Reference in New Issue
Block a user