mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-25 02:10:22 -06:00
Fix #5503
This commit is contained in:
parent
f12b3bc9b7
commit
accecf6a76
@ -89,6 +89,9 @@ PGSQL_SSL_CERT=null
|
|||||||
PGSQL_SSL_KEY=null
|
PGSQL_SSL_KEY=null
|
||||||
PGSQL_SSL_CRL_FILE=null
|
PGSQL_SSL_CRL_FILE=null
|
||||||
|
|
||||||
|
# more PostgreSQL settings
|
||||||
|
PGSQL_SCHEMA=public
|
||||||
|
|
||||||
# If you're looking for performance improvements, you could install memcached or redis
|
# If you're looking for performance improvements, you could install memcached or redis
|
||||||
CACHE_DRIVER=file
|
CACHE_DRIVER=file
|
||||||
SESSION_DRIVER=file
|
SESSION_DRIVER=file
|
||||||
|
@ -109,7 +109,7 @@ return [
|
|||||||
'password' => env('DB_PASSWORD', $password),
|
'password' => env('DB_PASSWORD', $password),
|
||||||
'charset' => 'utf8',
|
'charset' => 'utf8',
|
||||||
'prefix' => '',
|
'prefix' => '',
|
||||||
'schema' => 'public',
|
'schema' => envNonEmpty('PGSQL_SCHEMA', 'public'),
|
||||||
'sslmode' => envNonEmpty('PGSQL_SSL_MODE', 'prefer'),
|
'sslmode' => envNonEmpty('PGSQL_SSL_MODE', 'prefer'),
|
||||||
'sslcert' => envNonEmpty('PGSQL_SSL_CERT'),
|
'sslcert' => envNonEmpty('PGSQL_SSL_CERT'),
|
||||||
'sslkey' => envNonEmpty('PGSQL_SSL_KEY'),
|
'sslkey' => envNonEmpty('PGSQL_SSL_KEY'),
|
||||||
|
Loading…
Reference in New Issue
Block a user