]> BookStack Code Mirror - bookstack/blob - app/Config/queue.php
Add git to the apt-get install packages.
[bookstack] / app / Config / queue.php
1 <?php
2
3 /**
4  * Queue configuration options.
5  *
6  * Changes to these config files are not supported by BookStack and may break upon updates.
7  * Configuration should be altered via the `.env` file or environment variables.
8  * Do not edit this file unless you're happy to maintain any changes yourself.
9  */
10
11 return [
12
13     // Default driver to use for the queue
14     // Options: null, sync, redis
15     'default' => env('QUEUE_CONNECTION', 'sync'),
16
17     // Queue connection configuration
18     'connections' => [
19
20
21         'sync' => [
22             'driver' => 'sync',
23         ],
24
25         'database' => [
26             'driver' => 'database',
27             'table' => 'jobs',
28             'queue' => 'default',
29             'retry_after' => 90,
30         ],
31
32         'redis' => [
33             'driver' => 'redis',
34             'connection' => 'default',
35             'queue' => env('REDIS_QUEUE', 'default'),
36             'retry_after' => 90,
37             'block_for' => null,
38         ],
39
40     ],
41
42     // Failed queue job logging
43     'failed' => [
44         'database' => 'mysql', 'table' => 'failed_jobs',
45     ],
46
47 ];
Morty Proxy This is a proxified and sanitized view of the page, visit original site.