mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
Update dependencies for Laravel10
This commit is contained in:
+10
-13
@@ -37,19 +37,16 @@ return [
|
||||
* @see https://www.elastic.co/guide/en/elasticsearch/client/php-api/2.0/_configuration.html#_inline_host_configuration
|
||||
*/
|
||||
'hosts' => [
|
||||
[
|
||||
'host' => env('ELASTICSEARCH_HOST', 'localhost'),
|
||||
'port' => env('ELASTICSEARCH_PORT', 9200),
|
||||
'scheme' => env('ELASTICSEARCH_SCHEME', null),
|
||||
'user' => env('ELASTICSEARCH_USER', null),
|
||||
'pass' => env('ELASTICSEARCH_PASS', null),
|
||||
|
||||
// If you are connecting to an Elasticsearch instance on AWS, you will need these values as well
|
||||
'aws' => env('AWS_ELASTICSEARCH_ENABLED', false),
|
||||
'aws_region' => env('AWS_REGION', ''),
|
||||
'aws_key' => env('AWS_ACCESS_KEY_ID', ''),
|
||||
'aws_secret' => env('AWS_SECRET_ACCESS_KEY', ''),
|
||||
],
|
||||
env('ELASTICSEARCH_SCHEME', 'http').'://'.env('ELASTICSEARCH_HOST', 'localhost').':'.env('ELASTICSEARCH_PORT', 9200),
|
||||
],
|
||||
'basicAuthentication' => [
|
||||
'user' => env('ELASTICSEARCH_USER', null),
|
||||
'pass' => env('ELASTICSEARCH_PASS', null),
|
||||
],
|
||||
'cloud_api' => [
|
||||
// Alternatively, you can log in via API keys
|
||||
'api_id' => env('ELASTICSEARCH_API_ID', null),
|
||||
'api_key' => env('ELASTICSEARCH_API_KEY', null),
|
||||
],
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user