6 |--------------------------------------------------------------------------
7 | Default Queue Connection Name
8 |--------------------------------------------------------------------------
10 | Laravel's queue API supports an assortment of back-ends via a single
11 | API, giving you convenient access to each back-end using the same
12 | syntax for every one. Here you may define a default connection.
16 'default' => env('QUEUE_CONNECTION', 'sync'),
19 |--------------------------------------------------------------------------
21 |--------------------------------------------------------------------------
23 | Here you may configure the connection information for each server that
24 | is used by your application. A default configuration has been added
25 | for each back-end shipped with Laravel. You are free to add more.
27 | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
38 'driver' => 'database',
42 'after_commit' => false,
46 'driver' => 'beanstalkd',
47 'host' => 'localhost',
51 'after_commit' => false,
56 'key' => env('AWS_ACCESS_KEY_ID'),
57 'secret' => env('AWS_SECRET_ACCESS_KEY'),
58 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
59 'queue' => env('SQS_QUEUE', 'default'),
60 'suffix' => env('SQS_SUFFIX'),
61 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
62 'after_commit' => false,
67 'connection' => 'default',
68 'queue' => env('REDIS_QUEUE', 'default'),
71 'after_commit' => false,
77 |--------------------------------------------------------------------------
79 |--------------------------------------------------------------------------
81 | These options configure the behavior of failed queue job logging so you
82 | can control which database and table are used to store the jobs that
83 | have failed. You may change them to any database / table you wish.
88 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
89 'database' => env('DB_CONNECTION', 'mysql'),
90 'table' => 'failed_jobs',