aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/config/config.yml
diff options
context:
space:
mode:
Diffstat (limited to 'app/config/config.yml')
-rw-r--r--app/config/config.yml128
1 files changed, 112 insertions, 16 deletions
diff --git a/app/config/config.yml b/app/config/config.yml
index 2b11937c..5127c8cf 100644
--- a/app/config/config.yml
+++ b/app/config/config.yml
@@ -30,7 +30,7 @@ framework:
30 assets: ~ 30 assets: ~
31 31
32wallabag_core: 32wallabag_core:
33 version: 2.0.8 33 version: 2.1.3-dev
34 paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb" 34 paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb"
35 languages: 35 languages:
36 en: 'English' 36 en: 'English'
@@ -46,12 +46,16 @@ wallabag_core:
46 it: 'Italiano' 46 it: 'Italiano'
47 items_on_page: 12 47 items_on_page: 12
48 theme: material 48 theme: material
49 language: en 49 language: '%locale%'
50 rss_limit: 50 50 rss_limit: 50
51 reading_speed: 1 51 reading_speed: 1
52 cache_lifetime: 10
53
54wallabag_user:
55 registration_enabled: "%fosuser_registration%"
52 56
53wallabag_import: 57wallabag_import:
54 allow_mimetypes: ['application/octet-stream', 'application/json', 'text/plain'] 58 allow_mimetypes: ['application/octet-stream', 'application/json', 'text/plain', 'text/csv']
55 resource_dir: "%kernel.root_dir%/../web/uploads/import" 59 resource_dir: "%kernel.root_dir%/../web/uploads/import"
56 60
57# Twig Configuration 61# Twig Configuration
@@ -60,19 +64,7 @@ twig:
60 strict_variables: "%kernel.debug%" 64 strict_variables: "%kernel.debug%"
61 form_themes: 65 form_themes:
62 - "LexikFormFilterBundle:Form:form_div_layout.html.twig" 66 - "LexikFormFilterBundle:Form:form_div_layout.html.twig"
63 67 exception_controller: wallabag_core.exception_controller:showAction
64# Assetic Configuration
65assetic:
66 debug: "%kernel.debug%"
67 use_controller: false
68 bundles: [ ]
69 #java: /usr/bin/java
70 filters:
71 cssrewrite: ~
72 #closure:
73 # jar: "%kernel.root_dir%/Resources/java/compiler.jar"
74 #yui_css:
75 # jar: "%kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar"
76 68
77# Doctrine Configuration 69# Doctrine Configuration
78doctrine: 70doctrine:
@@ -85,6 +77,7 @@ doctrine:
85 password: "%database_password%" 77 password: "%database_password%"
86 charset: UTF8 78 charset: UTF8
87 path: "%database_path%" 79 path: "%database_path%"
80 unix_socket: "%database_socket%"
88 server_version: 5.6 81 server_version: 5.6
89 82
90 orm: 83 orm:
@@ -224,3 +217,106 @@ lexik_maintenance:
224 response: 217 response:
225 code: 503 218 code: 503
226 status: "wallabag Service Temporarily Unavailable" 219 status: "wallabag Service Temporarily Unavailable"
220
221old_sound_rabbit_mq:
222 connections:
223 default:
224 host: "%rabbitmq_host%"
225 port: "%rabbitmq_port%"
226 user: "%rabbitmq_user%"
227 password: "%rabbitmq_password%"
228 vhost: /
229 lazy: true
230 producers:
231 import_pocket:
232 connection: default
233 exchange_options:
234 name: 'wallabag.import.pocket'
235 type: topic
236 import_readability:
237 connection: default
238 exchange_options:
239 name: 'wallabag.import.readability'
240 type: topic
241 import_instapaper:
242 connection: default
243 exchange_options:
244 name: 'wallabag.import.instapaper'
245 type: topic
246 import_wallabag_v1:
247 connection: default
248 exchange_options:
249 name: 'wallabag.import.wallabag_v1'
250 type: topic
251 import_wallabag_v2:
252 connection: default
253 exchange_options:
254 name: 'wallabag.import.wallabag_v2'
255 type: topic
256 import_firefox:
257 connection: default
258 exchange_options:
259 name: 'wallabag.import.firefox'
260 type: topic
261 import_chrome:
262 connection: default
263 exchange_options:
264 name: 'wallabag.import.chrome'
265 type: topic
266 consumers:
267 import_pocket:
268 connection: default
269 exchange_options:
270 name: 'wallabag.import.pocket'
271 type: topic
272 queue_options:
273 name: 'wallabag.import.pocket'
274 callback: wallabag_import.consumer.amqp.pocket
275 import_readability:
276 connection: default
277 exchange_options:
278 name: 'wallabag.import.readability'
279 type: topic
280 queue_options:
281 name: 'wallabag.import.readability'
282 callback: wallabag_import.consumer.amqp.readability
283 import_instapaper:
284 connection: default
285 exchange_options:
286 name: 'wallabag.import.instapaper'
287 type: topic
288 queue_options:
289 name: 'wallabag.import.instapaper'
290 callback: wallabag_import.consumer.amqp.instapaper
291 import_wallabag_v1:
292 connection: default
293 exchange_options:
294 name: 'wallabag.import.wallabag_v1'
295 type: topic
296 queue_options:
297 name: 'wallabag.import.wallabag_v1'
298 callback: wallabag_import.consumer.amqp.wallabag_v1
299 import_wallabag_v2:
300 connection: default
301 exchange_options:
302 name: 'wallabag.import.wallabag_v2'
303 type: topic
304 queue_options:
305 name: 'wallabag.import.wallabag_v2'
306 callback: wallabag_import.consumer.amqp.wallabag_v2
307 import_firefox:
308 connection: default
309 exchange_options:
310 name: 'wallabag.import.firefox'
311 type: topic
312 queue_options:
313 name: 'wallabag.import.firefox'
314 callback: wallabag_import.consumer.amqp.firefox
315 import_chrome:
316 connection: default
317 exchange_options:
318 name: 'wallabag.import.chrome'
319 type: topic
320 queue_options:
321 name: 'wallabag.import.chrome'
322 callback: wallabag_import.consumer.amqp.chrome