mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
#1: Made Elasticsearch hosts configurable in an environment variable.
This commit is contained in:
parent
56edd5ec28
commit
e295c41243
3 changed files with 6 additions and 4 deletions
|
@ -30,12 +30,13 @@ return [
|
||||||
*
|
*
|
||||||
* This is the only configuration value that is mandatory.
|
* This is the only configuration value that is mandatory.
|
||||||
*
|
*
|
||||||
|
* If set in an environment variable, this should be a comma-separated
|
||||||
|
* list of hostnames. Port numbers are optional; 9200 is the default.
|
||||||
|
*
|
||||||
* @see https://www.elastic.co/guide/en/elasticsearch/client/php-api/2.0/_configuration.html#_host_configuration
|
* @see https://www.elastic.co/guide/en/elasticsearch/client/php-api/2.0/_configuration.html#_host_configuration
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'hosts' => [
|
'hosts' => explode(',', env('ELASTICSEARCH_HOSTS', 'localhost:9200')),
|
||||||
'localhost:9200'
|
|
||||||
],
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SSL
|
* SSL
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
use Illuminate\Database\Migrations\Migration;
|
use Illuminate\Database\Migrations\Migration;
|
||||||
use Poniverse\Ponyfm\Console\Commands\RebuildSearchIndex;
|
|
||||||
|
|
||||||
class SetupElasticsearch extends Migration
|
class SetupElasticsearch extends Migration
|
||||||
{
|
{
|
||||||
|
|
|
@ -8,6 +8,8 @@ DB_DATABASE=homestead
|
||||||
DB_USERNAME=homestead
|
DB_USERNAME=homestead
|
||||||
DB_PASSWORD=secret
|
DB_PASSWORD=secret
|
||||||
|
|
||||||
|
ELASTICSEARCH_HOSTS=localhost
|
||||||
|
|
||||||
SESSION_HTTPS_ONLY=false
|
SESSION_HTTPS_ONLY=false
|
||||||
QUEUE_DRIVER=sync
|
QUEUE_DRIVER=sync
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue