forked from Alex/Pterodactyl-Panel
Configuration JSON should be including the FQDN instead of localhost for the certificate path.
This commit is contained in:
parent
7bd1fbb14c
commit
921c7b1725
@ -132,8 +132,8 @@ class Node extends Model
|
||||
'listen' => $this->daemonListen,
|
||||
'ssl' => [
|
||||
'enabled' => $this->scheme === 'https',
|
||||
'certificate' => '/etc/letsencrypt/live/localhost/fullchain.pem',
|
||||
'key' => '/etc/letsencrypt/live/localhost/privkey.pem',
|
||||
'certificate' => '/etc/letsencrypt/live/' . $this->fqdn . '/fullchain.pem',
|
||||
'key' => '/etc/letsencrypt/live/' . $this->fqdn . '/privkey.pem',
|
||||
],
|
||||
],
|
||||
'docker' => [
|
||||
|
Loading…
Reference in New Issue
Block a user