mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
debug cert
This commit is contained in:
parent
f48791fba6
commit
369caae87d
1 changed files with 8 additions and 2 deletions
|
|
@ -591,7 +591,10 @@ App::init()
|
||||||
Query::equal('domain', [$domain->get()])
|
Query::equal('domain', [$domain->get()])
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
var_dump([
|
||||||
|
'location' => 'general.php.1',
|
||||||
|
'domainDocument' => $domainDocument
|
||||||
|
]);
|
||||||
if ($domainDocument->isEmpty()) {
|
if ($domainDocument->isEmpty()) {
|
||||||
$domainDocument = new Document([
|
$domainDocument = new Document([
|
||||||
// TODO: @christyjacob remove once we migrate the rules in 1.7.x
|
// TODO: @christyjacob remove once we migrate the rules in 1.7.x
|
||||||
|
|
@ -602,7 +605,10 @@ App::init()
|
||||||
'projectId' => 'console',
|
'projectId' => 'console',
|
||||||
'projectInternalId' => 'console'
|
'projectInternalId' => 'console'
|
||||||
]);
|
]);
|
||||||
|
var_dump([
|
||||||
|
'location' => 'general.php.2',
|
||||||
|
'domainDocument' => $domainDocument
|
||||||
|
]);
|
||||||
$domainDocument = $dbForPlatform->createDocument('rules', $domainDocument);
|
$domainDocument = $dbForPlatform->createDocument('rules', $domainDocument);
|
||||||
|
|
||||||
Console::info('Issuing a TLS certificate for the main domain (' . $domain->get() . ') in a few seconds...');
|
Console::info('Issuing a TLS certificate for the main domain (' . $domain->get() . ') in a few seconds...');
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue