mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-27 08:18:24 +03:00
Added configuration for mercure integration
This commit is contained in:
parent
0c9deca3f8
commit
10cad33248
2 changed files with 26 additions and 0 deletions
13
config/autoload/mercure.global.php
Normal file
13
config/autoload/mercure.global.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
|
||||
'mercure' => [
|
||||
'public_hub_url' => null,
|
||||
'internal_hub_url' => null,
|
||||
'jwt_secret' => null,
|
||||
],
|
||||
|
||||
];
|
13
config/autoload/mercure.local.php.dist
Normal file
13
config/autoload/mercure.local.php.dist
Normal 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',
|
||||
],
|
||||
|
||||
];
|
Loading…
Reference in a new issue