mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
elastic basically finish
This commit is contained in:
16
config/elastic.php
Normal file
16
config/elastic.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'hosts' => [
|
||||
[
|
||||
'host' => env('ELASTICSEARCH_HOST','localhost'),
|
||||
'port' => env('ELASTICSEARCH_PORT','9200'),
|
||||
'scheme' => env('ELASTICSEARCH_SCHEME','https'),
|
||||
'user' => env('ELASTICSEARCH_USER','elastic'),
|
||||
'pass' => env('ELASTICSEARCH_PASS',''),
|
||||
]
|
||||
],
|
||||
|
||||
'ssl_verification' => env('ELASTICSEARCH_SSL_VERIFICATION', ''),
|
||||
];
|
||||
Reference in New Issue
Block a user