File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 22
33namespace Pterodactyl \Models ;
44
5+ use Illuminate \Support \Str ;
56use Symfony \Component \Yaml \Yaml ;
67use Illuminate \Container \Container ;
78use Illuminate \Notifications \Notifiable ;
@@ -155,8 +156,8 @@ public function getConfiguration()
155156 'port ' => $ this ->daemonListen ,
156157 'ssl ' => [
157158 'enabled ' => (!$ this ->behind_proxy && $ this ->scheme === 'https ' ),
158- 'cert ' => '/etc/letsencrypt/live/ ' . $ this ->fqdn . '/fullchain.pem ' ,
159- 'key ' => '/etc/letsencrypt/live/ ' . $ this ->fqdn . '/privkey.pem ' ,
159+ 'cert ' => '/etc/letsencrypt/live/ ' . Str:: lower ( $ this ->fqdn ) . '/fullchain.pem ' ,
160+ 'key ' => '/etc/letsencrypt/live/ ' . Str:: lower ( $ this ->fqdn ) . '/privkey.pem ' ,
160161 ],
161162 'upload_limit ' => $ this ->upload_size ,
162163 ],
You can’t perform that action at this time.
0 commit comments