mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
15 lines
254 B
PHP
15 lines
254 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'default' => env('ELASTIC_CONNECTION', 'default'),
|
|
'connections' => [
|
|
'default' => [
|
|
'hosts' => [
|
|
env('ELASTIC_HOST', 'localhost'),
|
|
],
|
|
],
|
|
],
|
|
];
|