mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Expand config for redis.
This commit is contained in:
@@ -60,6 +60,12 @@ PGSQL_SSL_CRL_FILE=null
|
|||||||
CACHE_DRIVER=file
|
CACHE_DRIVER=file
|
||||||
SESSION_DRIVER=file
|
SESSION_DRIVER=file
|
||||||
|
|
||||||
|
# If you set either of these to 'redis', you might want to update these settings too
|
||||||
|
REDIS_HOST=127.0.0.1
|
||||||
|
REDIS_PASSWORD=null
|
||||||
|
REDIS_PORT=6379
|
||||||
|
REDIS_DB="0" # always use quotes
|
||||||
|
|
||||||
# You can configure another file storage backend if you cannot use the local storage option.
|
# You can configure another file storage backend if you cannot use the local storage option.
|
||||||
# To set this up, fill in the following variables. The upload path is used to store uploaded
|
# To set this up, fill in the following variables. The upload path is used to store uploaded
|
||||||
# files and the export path is to store exported data (before download).
|
# files and the export path is to store exported data (before download).
|
||||||
@@ -171,9 +177,6 @@ APP_NAME=FireflyIII
|
|||||||
ADLDAP_CONNECTION=default
|
ADLDAP_CONNECTION=default
|
||||||
BROADCAST_DRIVER=log
|
BROADCAST_DRIVER=log
|
||||||
QUEUE_DRIVER=sync
|
QUEUE_DRIVER=sync
|
||||||
REDIS_HOST=127.0.0.1
|
|
||||||
REDIS_PASSWORD=null
|
|
||||||
REDIS_PORT=6379
|
|
||||||
CACHE_PREFIX=firefly
|
CACHE_PREFIX=firefly
|
||||||
SEARCH_RESULT_LIMIT=50
|
SEARCH_RESULT_LIMIT=50
|
||||||
PUSHER_KEY=
|
PUSHER_KEY=
|
||||||
|
@@ -61,9 +61,10 @@
|
|||||||
"ext-fileinfo": "*",
|
"ext-fileinfo": "*",
|
||||||
"ext-gd": "*",
|
"ext-gd": "*",
|
||||||
"ext-intl": "*",
|
"ext-intl": "*",
|
||||||
"ext-session": "*",
|
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"ext-openssl": "*",
|
"ext-openssl": "*",
|
||||||
|
"ext-pdo": "*",
|
||||||
|
"ext-session": "*",
|
||||||
"ext-simplexml": "*",
|
"ext-simplexml": "*",
|
||||||
"ext-tokenizer": "*",
|
"ext-tokenizer": "*",
|
||||||
"ext-xml": "*",
|
"ext-xml": "*",
|
||||||
@@ -74,6 +75,7 @@
|
|||||||
"davejamesmiller/laravel-breadcrumbs": "5.*",
|
"davejamesmiller/laravel-breadcrumbs": "5.*",
|
||||||
"doctrine/dbal": "2.*",
|
"doctrine/dbal": "2.*",
|
||||||
"fideloper/proxy": "4.*",
|
"fideloper/proxy": "4.*",
|
||||||
|
"jc5/google2fa-laravel": "2.*",
|
||||||
"laravel/framework": "5.8.*",
|
"laravel/framework": "5.8.*",
|
||||||
"laravel/passport": "7.*",
|
"laravel/passport": "7.*",
|
||||||
"laravelcollective/html": "5.8.*",
|
"laravelcollective/html": "5.8.*",
|
||||||
@@ -85,10 +87,9 @@
|
|||||||
"litipk/flysystem-fallback-adapter": "0.*",
|
"litipk/flysystem-fallback-adapter": "0.*",
|
||||||
"mschindler83/fints-hbci-php": "1.*",
|
"mschindler83/fints-hbci-php": "1.*",
|
||||||
"pragmarx/google2fa": "6.1.3",
|
"pragmarx/google2fa": "6.1.3",
|
||||||
"pragmarx/google2fa-laravel": "1.*",
|
|
||||||
"pragmarx/recovery": "^0.1.0",
|
"pragmarx/recovery": "^0.1.0",
|
||||||
"rcrowe/twigbridge": "0.9.*",
|
"predis/predis": "^1.1",
|
||||||
"ext-pdo": "*"
|
"rcrowe/twigbridge": "0.9.*"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"barryvdh/laravel-ide-helper": "2.*",
|
"barryvdh/laravel-ide-helper": "2.*",
|
||||||
|
496
composer.lock
generated
496
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -96,7 +96,7 @@ return [
|
|||||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||||
'password' => env('REDIS_PASSWORD', null),
|
'password' => env('REDIS_PASSWORD', null),
|
||||||
'port' => env('REDIS_PORT', 6379),
|
'port' => env('REDIS_PORT', 6379),
|
||||||
'database' => 0,
|
'database' => env('REDIS_DB', '0'),
|
||||||
],
|
],
|
||||||
|
|
||||||
],
|
],
|
||||||
|
@@ -91,4 +91,7 @@ return [
|
|||||||
*/
|
*/
|
||||||
'throw_exceptions' => true,
|
'throw_exceptions' => true,
|
||||||
|
|
||||||
|
|
||||||
|
'store_in_cookie' => true,
|
||||||
|
|
||||||
];
|
];
|
||||||
|
Reference in New Issue
Block a user