diff options
Diffstat (limited to 'app/config/config.yml')
-rw-r--r-- | app/config/config.yml | 25 |
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 | |||
219 | old_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 | ||