mytube-backend/config/autoload/api.global.php
2024-08-04 14:23:33 +00:00

30 lines
664 B
PHP

<?php
return [
'api' => [
'keys' => [
'myTube' => $_ENV['HOMEPAGE_API_KEY'],
'notification' => $_ENV['NOTIFICATION_API_KEY'],
],
'services' => [
'myTube' => [
'host' => 'myTube-backend-nginx',
'apis' => [
]
],
'notification' => [
'host' => 'notification-backend-nginx',
'apis' => [
'send-mail' => [
'path' => '/api/mail/send',
'method' => 'POST'
],
],
],
],
],
];