We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bd1fbb commit 921c7b1Copy full SHA for 921c7b1
app/Models/Node.php
@@ -132,8 +132,8 @@ public function getConfigurationAsJson($pretty = false)
132
'listen' => $this->daemonListen,
133
'ssl' => [
134
'enabled' => $this->scheme === 'https',
135
- 'certificate' => '/etc/letsencrypt/live/localhost/fullchain.pem',
136
- 'key' => '/etc/letsencrypt/live/localhost/privkey.pem',
+ 'certificate' => '/etc/letsencrypt/live/' . $this->fqdn . '/fullchain.pem',
+ 'key' => '/etc/letsencrypt/live/' . $this->fqdn . '/privkey.pem',
137
],
138
139
'docker' => [
0 commit comments