Nodelist import
This commit is contained in:
@@ -82,6 +82,25 @@ return [
|
||||
'prefix_indexes' => true,
|
||||
],
|
||||
|
||||
'cockroach' => [
|
||||
'driver' => 'cockroach',
|
||||
'host' => env('DB_HOST', 'HOSTNAME-OF-COCKROACH-SERVER'),
|
||||
'port' => env('DB_PORT', '26257'),
|
||||
'database' => env('DB_DATABASE', 'DATABASE-NAME'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => 'utf8',
|
||||
'prefix' => '',
|
||||
'schema' => 'public',
|
||||
'sslmode' => 'prefer',
|
||||
|
||||
// Only set these keys if you want to run en secure mode
|
||||
// otherwise you can them out of the configuration array
|
||||
#'sslcert' => env('DB_SSLCERT', 'client.crt'),
|
||||
#'sslkey' => env('DB_SSLKEY', 'client.key'),
|
||||
#'sslrootcert' => env('DB_SSLROOTCERT', 'ca.crt'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user