]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/config/config.yml
4eea0531b4d9a77d1789165015c6108113699381
[github/wallabag/wallabag.git] / app / config / config.yml
1 imports:
2 - { resource: parameters.yml }
3 - { resource: security.yml }
4 - { resource: services.yml }
5 - { resource: wallabag.yml }
6
7 parameters:
8 # Allows to use the live reload feature for changes in assets
9 use_webpack_dev_server: false
10 craue_config.cache_adapter.class: Craue\ConfigBundle\CacheAdapter\SymfonyCacheComponentAdapter
11
12 framework:
13 #esi: ~
14 translator:
15 enabled: true
16 fallback: "%locale%"
17 secret: "%secret%"
18 router:
19 resource: "%kernel.project_dir%/app/config/routing.yml"
20 strict_requirements: ~
21 form: ~
22 csrf_protection: ~
23 validation:
24 enable_annotations: true
25 templating:
26 engines: ['twig']
27 default_locale: "%locale%"
28 trusted_hosts: ~
29 session:
30 # handler_id set to null will use default session handler from php.ini
31 handler_id: session.handler.native_file
32 save_path: "%kernel.project_dir%/var/sessions/%kernel.environment%"
33 fragments: ~
34 http_method_override: true
35 assets: ~
36
37 # Twig Configuration
38 twig:
39 debug: "%kernel.debug%"
40 strict_variables: "%kernel.debug%"
41 form_themes:
42 - "LexikFormFilterBundle:Form:form_div_layout.html.twig"
43 exception_controller: wallabag_core.exception_controller:showAction
44
45 # Doctrine Configuration
46 doctrine:
47 dbal:
48 driver: "%database_driver%"
49 host: "%database_host%"
50 port: "%database_port%"
51 dbname: "%database_name%"
52 user: "%database_user%"
53 password: "%database_password%"
54 charset: "%database_charset%"
55 path: "%database_path%"
56 unix_socket: "%database_socket%"
57
58 orm:
59 auto_generate_proxy_classes: "%kernel.debug%"
60 entity_managers:
61 default:
62 auto_mapping: true
63
64 stof_doctrine_extensions:
65 default_locale: "%locale%"
66 translation_fallback: true
67 orm:
68 default:
69 tree: true
70 sluggable: true
71
72 doctrine_migrations:
73 dir_name: "%kernel.project_dir%/app/DoctrineMigrations"
74 namespace: Application\Migrations
75 table_name: migration_versions
76 name: Application Migrations
77
78 # Swiftmailer Configuration
79 swiftmailer:
80 transport: "%mailer_transport%"
81 username: "%mailer_user%"
82 password: "%mailer_password%"
83 host: "%mailer_host%"
84 port: "%mailer_port%"
85 encryption: "%mailer_encryption%"
86 auth_mode: "%mailer_auth_mode%"
87 spool:
88 type: memory
89
90 fos_rest:
91 param_fetcher_listener: true
92 body_listener: true
93 view:
94 mime_types:
95 csv:
96 - 'text/csv'
97 - 'text/plain'
98 pdf:
99 - 'application/pdf'
100 epub:
101 - 'application/epub+zip'
102 mobi:
103 - 'application/x-mobipocket-ebook'
104 view_response_listener: 'force'
105 formats:
106 xml: true
107 json: true
108 txt: true
109 csv: true
110 pdf: true
111 epub: true
112 mobi: true
113 templating_formats:
114 html: false
115 force_redirects:
116 html: true
117 failed_validation: HTTP_BAD_REQUEST
118 default_engine: twig
119 routing_loader:
120 default_format: json
121 format_listener:
122 enabled: true
123 rules:
124 - { path: "^/api/entries/([0-9]+)/export.(.*)", priorities: ['epub', 'mobi', 'pdf', 'txt', 'csv'], fallback_format: json, prefer_extension: false }
125 - { path: "^/api", priorities: ['json', 'xml'], fallback_format: json, prefer_extension: false }
126 - { path: "^/annotations", priorities: ['json', 'xml'], fallback_format: json, prefer_extension: false }
127 # for an unknown reason, EACH REQUEST goes to FOS\RestBundle\EventListener\FormatListener
128 # so we need to add custom rule for custom api export but also for all other routes of the application...
129 - { path: '^/', priorities: ['text/html', '*/*'], fallback_format: html, prefer_extension: false }
130
131 nelmio_api_doc:
132 sandbox:
133 enabled: false
134 cache:
135 enabled: true
136 name: wallabag API documentation
137
138 nelmio_cors:
139 defaults:
140 allow_credentials: false
141 allow_origin: []
142 allow_headers: []
143 allow_methods: []
144 expose_headers: []
145 max_age: 0
146 hosts: []
147 #origin_regex: false
148 paths:
149 '^/api/':
150 allow_origin: ['*']
151 allow_headers: ['Authorization','content-type']
152 allow_methods: ['POST', 'PUT', 'PATCH','GET', 'DELETE']
153 max_age: 3600
154 '^/oauth/':
155 allow_origin: ['*']
156 allow_headers: ['Authorization','content-type']
157 allow_methods: ['POST', 'PUT', 'GET', 'DELETE']
158 max_age: 3600
159 '^/':
160 #origin_regex: true
161 allow_origin: ['*']
162 allow_headers: ['Authorization','content-type']
163 allow_methods: ['POST', 'PUT', 'GET', 'DELETE']
164 max_age: 3600
165 hosts: ['^api\.']
166
167 liip_theme:
168 load_controllers: false
169 themes:
170 - baggy
171 - material
172 autodetect_theme: wallabag_core.helper.detect_active_theme
173
174 path_patterns:
175 bundle_resource:
176 - "%%bundle_path%%/Resources/views/themes/%%current_theme%%/%%template%%"
177
178 fos_user:
179 db_driver: orm
180 firewall_name: secured_area
181 user_class: Wallabag\UserBundle\Entity\User
182 registration:
183 confirmation:
184 enabled: "%fosuser_confirmation%"
185 from_email:
186 address: "%from_email%"
187 sender_name: wallabag
188
189 fos_oauth_server:
190 db_driver: orm
191 client_class: Wallabag\ApiBundle\Entity\Client
192 access_token_class: Wallabag\ApiBundle\Entity\AccessToken
193 refresh_token_class: Wallabag\ApiBundle\Entity\RefreshToken
194 auth_code_class: Wallabag\ApiBundle\Entity\AuthCode
195 service:
196 user_provider: fos_user.user_provider.username_email
197 options:
198 refresh_token_lifetime: "%fos_oauth_server_refresh_token_lifetime%"
199 access_token_lifetime: "%fos_oauth_server_access_token_lifetime%"
200
201 scheb_two_factor:
202 trusted_device:
203 enabled: true
204 cookie_name: wllbg_trusted_computer
205 lifetime: 2592000
206
207 backup_codes:
208 enabled: "%twofactor_auth%"
209
210 google:
211 enabled: "%twofactor_auth%"
212 template: WallabagUserBundle:Authentication:form.html.twig
213
214 email:
215 enabled: "%twofactor_auth%"
216 sender_email: "%twofactor_sender%"
217 digits: 6
218 template: WallabagUserBundle:Authentication:form.html.twig
219 mailer: wallabag_user.auth_code_mailer
220
221 kphoen_rulerz:
222 targets:
223 doctrine: true
224
225 old_sound_rabbit_mq:
226 connections:
227 default:
228 host: "%rabbitmq_host%"
229 port: "%rabbitmq_port%"
230 user: "%rabbitmq_user%"
231 password: "%rabbitmq_password%"
232 vhost: /
233 lazy: true
234 producers:
235 import_pocket:
236 connection: default
237 exchange_options:
238 name: 'wallabag.import.pocket'
239 type: topic
240 import_readability:
241 connection: default
242 exchange_options:
243 name: 'wallabag.import.readability'
244 type: topic
245 import_pinboard:
246 connection: default
247 exchange_options:
248 name: 'wallabag.import.pinboard'
249 type: topic
250 import_instapaper:
251 connection: default
252 exchange_options:
253 name: 'wallabag.import.instapaper'
254 type: topic
255 import_wallabag_v1:
256 connection: default
257 exchange_options:
258 name: 'wallabag.import.wallabag_v1'
259 type: topic
260 import_wallabag_v2:
261 connection: default
262 exchange_options:
263 name: 'wallabag.import.wallabag_v2'
264 type: topic
265 import_elcurator:
266 connection: default
267 exchange_options:
268 name: 'wallabag.import.elcurator'
269 type: topic
270 import_firefox:
271 connection: default
272 exchange_options:
273 name: 'wallabag.import.firefox'
274 type: topic
275 import_chrome:
276 connection: default
277 exchange_options:
278 name: 'wallabag.import.chrome'
279 type: topic
280 consumers:
281 import_pocket:
282 connection: default
283 exchange_options:
284 name: 'wallabag.import.pocket'
285 type: topic
286 queue_options:
287 name: 'wallabag.import.pocket'
288 callback: wallabag_import.consumer.amqp.pocket
289 qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
290 import_readability:
291 connection: default
292 exchange_options:
293 name: 'wallabag.import.readability'
294 type: topic
295 queue_options:
296 name: 'wallabag.import.readability'
297 callback: wallabag_import.consumer.amqp.readability
298 qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
299 import_instapaper:
300 connection: default
301 exchange_options:
302 name: 'wallabag.import.instapaper'
303 type: topic
304 queue_options:
305 name: 'wallabag.import.instapaper'
306 callback: wallabag_import.consumer.amqp.instapaper
307 qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
308 import_pinboard:
309 connection: default
310 exchange_options:
311 name: 'wallabag.import.pinboard'
312 type: topic
313 queue_options:
314 name: 'wallabag.import.pinboard'
315 callback: wallabag_import.consumer.amqp.pinboard
316 qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
317 import_wallabag_v1:
318 connection: default
319 exchange_options:
320 name: 'wallabag.import.wallabag_v1'
321 type: topic
322 queue_options:
323 name: 'wallabag.import.wallabag_v1'
324 callback: wallabag_import.consumer.amqp.wallabag_v1
325 qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
326 import_wallabag_v2:
327 connection: default
328 exchange_options:
329 name: 'wallabag.import.wallabag_v2'
330 type: topic
331 queue_options:
332 name: 'wallabag.import.wallabag_v2'
333 callback: wallabag_import.consumer.amqp.wallabag_v2
334 qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
335 import_elcurator:
336 connection: default
337 exchange_options:
338 name: 'wallabag.import.elcurator'
339 type: topic
340 queue_options:
341 name: 'wallabag.import.elcurator'
342 callback: wallabag_import.consumer.amqp.elcurator
343 qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
344 import_firefox:
345 connection: default
346 exchange_options:
347 name: 'wallabag.import.firefox'
348 type: topic
349 queue_options:
350 name: 'wallabag.import.firefox'
351 callback: wallabag_import.consumer.amqp.firefox
352 qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
353 import_chrome:
354 connection: default
355 exchange_options:
356 name: 'wallabag.import.chrome'
357 type: topic
358 queue_options:
359 name: 'wallabag.import.chrome'
360 callback: wallabag_import.consumer.amqp.chrome
361 qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
362
363 fos_js_routing:
364 routes_to_expose:
365 - homepage
366 - starred
367 - archive
368 - all
369 - tag
370 - config
371 - import
372 - developer
373 - howto
374 - fos_user_security_logout
375 - new
376
377 jms_serializer:
378 handlers:
379 # to be removed if we switch to (default) ISO8601 datetime instead of ATOM
380 # see: https://github.com/schmittjoh/JMSSerializerBundle/pull/494
381 datetime:
382 default_format: "Y-m-d\\TH:i:sO" # ATOM
383
384 # see https://github.com/symfony/symfony-standard/pull/1133
385 sensio_framework_extra:
386 router:
387 annotations: false
388
389 httplug:
390 clients:
391 wallabag_core:
392 factory: 'wallabag_core.http_client_factory'
393 config:
394 defaults:
395 timeout: 10
396 plugins: ['httplug.plugin.logger']
397 wallabag_core.entry.download_images:
398 factory: 'httplug.factory.auto'
399 plugins: ['httplug.plugin.logger']
400 wallabag_import.pocket.client:
401 factory: 'httplug.factory.auto'
402 plugins:
403 - 'httplug.plugin.logger'
404 - header_defaults:
405 headers:
406 'content-type': 'application/json'
407 'X-Accept': 'application/json'
408 discovery:
409 client: false
410
411 # define custom entity so we can override length attribute to fix utf8mb4 issue
412 craue_config:
413 entity_name: Wallabag\CoreBundle\Entity\InternalSetting