Added configuration for mercure integration

This commit is contained in:
Alejandro Celaya 2020-03-14 20:19:16 +01:00
parent 0c9deca3f8
commit 10cad33248
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
return [
'mercure' => [
'public_hub_url' => null,
'internal_hub_url' => null,
'jwt_secret' => null,
],
];

View file

@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
return [
'mercure' => [
'public_hub_url' => 'http://localhost:3080',
'internal_hub_url' => 'http://shlink_mercure',
'jwt_secret' => 'super_secret_key',
],
];