aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/config/config.yml
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@smile.fr>2016-01-15 08:24:32 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-11 21:57:09 +0200
commit56c778b4152a1b886353933276ee3626e4e8c004 (patch)
tree203a2bc2fc36016b5a51703b04d86b034d9393c3 /app/config/config.yml
parent59758d8fe5ad5ff554391515a78d84b0d47bdb76 (diff)
downloadwallabag-56c778b4152a1b886353933276ee3626e4e8c004.tar.gz
wallabag-56c778b4152a1b886353933276ee3626e4e8c004.tar.zst
wallabag-56c778b4152a1b886353933276ee3626e4e8c004.zip
1st draft for rabbitMQ
Diffstat (limited to 'app/config/config.yml')
-rw-r--r--app/config/config.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/config/config.yml b/app/config/config.yml
index 31bd8a8c..ef5ae0aa 100644
--- a/app/config/config.yml
+++ b/app/config/config.yml
@@ -215,3 +215,28 @@ lexik_maintenance:
215 response: 215 response:
216 code: 503 216 code: 503
217 status: "wallabag Service Temporarily Unavailable" 217 status: "wallabag Service Temporarily Unavailable"
218
219old_sound_rabbit_mq:
220 connections:
221 default:
222 host: %rabbitmq_host%
223 port: %rabbitmq_port%
224 user: %rabbitmq_user%
225 password: %rabbitmq_password%
226 vhost: /
227 lazy: false
228 producers:
229 wallabag:
230 connection: default
231 exchange_options:
232 name: 'wallabag_exchange'
233 type: topic
234 consumers:
235 entries:
236 connection: default
237 exchange_options:
238 name: 'wallabag_exchange'
239 type: topic
240 queue_options:
241 name: 'wallabag_queue'
242 callback: wallabag_import.consumer.entry