4 * Queue configuration options.
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.
13 // Default driver to use for the queue
14 // Options: null, sync, redis
15 'default' => env('QUEUE_DRIVER', 'sync'),
17 // Queue connection configuration
25 'driver' => 'database',
32 'driver' => 'beanstalkd',
33 'host' => 'localhost',
40 'key' => 'your-public-key',
41 'secret' => 'your-secret-key',
42 'queue' => 'your-queue-url',
43 'region' => 'us-east-1',
48 'host' => 'mq-aws-us-east-1.iron.io',
49 'token' => 'your-token',
50 'project' => 'your-project-id',
51 'queue' => 'your-queue-name',
57 'connection' => 'default',
64 // Failed queue job logging
66 'database' => 'mysql', 'table' => 'failed_jobs',