diff options
Diffstat (limited to 'app/config')
-rw-r--r-- | app/config/config.yml | 25 | ||||
-rw-r--r-- | app/config/parameters.yml.dist | 12 |
2 files changed, 37 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 | ||
diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist index d092e139..e925b412 100644 --- a/app/config/parameters.yml.dist +++ b/app/config/parameters.yml.dist | |||
@@ -38,3 +38,15 @@ parameters: | |||
38 | fosuser_confirmation: true | 38 | fosuser_confirmation: true |
39 | 39 | ||
40 | from_email: no-reply@wallabag.org | 40 | from_email: no-reply@wallabag.org |
41 | |||
42 | rss_limit: 50 | ||
43 | |||
44 | # pocket import | ||
45 | pocket_consumer_key: xxxxxxxx | ||
46 | |||
47 | # RabbitMQ processing | ||
48 | rabbitmq: false | ||
49 | rabbitmq_host: localhost | ||
50 | rabbitmq_port: 5672 | ||
51 | rabbitmq_user: guest | ||
52 | rabbitmq_password: guest | ||