mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
fix missing ssl object
This commit is contained in:
parent
ccbde6c470
commit
f21b1c87a6
1 changed files with 6 additions and 1 deletions
|
|
@ -222,7 +222,12 @@ class Certificates extends Action
|
|||
'projectId' => $project->getId(),
|
||||
'organizationId' => $project->getAttribute('teamId')
|
||||
],
|
||||
'hostname' => $hostname
|
||||
'hostname' => $hostname,
|
||||
'ssl' => [
|
||||
"method" => "http",
|
||||
"type" => "dv",
|
||||
"wildcard" => false
|
||||
]
|
||||
]);
|
||||
|
||||
if ($response->getStatusCode() !== 200) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue