mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
46 lines
1.0 KiB
PHP
Executable File
46 lines
1.0 KiB
PHP
Executable File
<?php
|
|
|
|
return [
|
|
'default' => 'sync',
|
|
'connections' => [
|
|
|
|
'sync' => [
|
|
'driver' => 'sync',
|
|
],
|
|
|
|
'beanstalkd' => [
|
|
'driver' => 'beanstalkd',
|
|
'host' => 'localhost',
|
|
'queue' => 'default',
|
|
'ttr' => 60,
|
|
],
|
|
|
|
'sqs' => [
|
|
'driver' => 'sqs',
|
|
'key' => 'your-public-key',
|
|
'secret' => 'your-secret-key',
|
|
'queue' => 'your-queue-url',
|
|
'region' => 'us-east-1',
|
|
],
|
|
|
|
'iron' => [
|
|
'driver' => 'iron',
|
|
'host' => 'mq-aws-us-east-1.iron.io',
|
|
'token' => 'your-token',
|
|
'project' => 'your-project-id',
|
|
'queue' => 'your-queue-name',
|
|
'encrypt' => true,
|
|
],
|
|
|
|
'redis' => [
|
|
'driver' => 'redis',
|
|
'queue' => 'default',
|
|
],
|
|
|
|
],
|
|
'failed' => [
|
|
'database' => 'mysql', 'table' => 'failed_jobs',
|
|
],
|
|
|
|
];
|