2015-01-22 08:30:07 +01:00
|
|
|
imports:
|
|
|
|
- { resource: parameters.yml }
|
|
|
|
- { resource: security.yml }
|
|
|
|
- { resource: services.yml }
|
2017-06-02 10:46:04 +02:00
|
|
|
- { resource: wallabag.yml }
|
2015-01-22 08:30:07 +01:00
|
|
|
|
2017-03-31 20:21:41 +02:00
|
|
|
parameters:
|
2017-04-29 19:44:27 +02:00
|
|
|
# Allows to use the live reload feature for changes in assets
|
2017-04-27 13:28:57 +02:00
|
|
|
use_webpack_dev_server: false
|
2017-05-12 16:33:12 +02:00
|
|
|
craue_config.cache_adapter.class: Craue\ConfigBundle\CacheAdapter\SymfonyCacheComponentAdapter
|
2017-03-31 20:21:41 +02:00
|
|
|
|
2015-01-22 08:30:07 +01:00
|
|
|
framework:
|
|
|
|
#esi: ~
|
2016-06-24 11:28:07 +02:00
|
|
|
translator:
|
|
|
|
enabled: true
|
|
|
|
fallback: "%locale%"
|
2022-12-15 21:18:50 +01:00
|
|
|
default_path: '%kernel.project_dir%/translations'
|
2016-06-24 11:28:07 +02:00
|
|
|
secret: "%secret%"
|
2015-01-22 08:30:07 +01:00
|
|
|
router:
|
2017-10-13 23:52:15 +02:00
|
|
|
resource: "%kernel.project_dir%/app/config/routing.yml"
|
2015-01-22 08:30:07 +01:00
|
|
|
strict_requirements: ~
|
2016-06-24 11:28:07 +02:00
|
|
|
form: ~
|
2015-01-22 08:30:07 +01:00
|
|
|
csrf_protection: ~
|
2016-06-24 11:28:07 +02:00
|
|
|
validation:
|
|
|
|
enable_annotations: true
|
2015-01-22 08:30:07 +01:00
|
|
|
templating:
|
|
|
|
engines: ['twig']
|
2016-06-24 11:28:07 +02:00
|
|
|
default_locale: "%locale%"
|
|
|
|
trusted_hosts: ~
|
2015-01-22 08:30:07 +01:00
|
|
|
session:
|
|
|
|
# handler_id set to null will use default session handler from php.ini
|
2016-06-24 11:28:07 +02:00
|
|
|
handler_id: session.handler.native_file
|
2017-10-13 23:52:15 +02:00
|
|
|
save_path: "%kernel.project_dir%/var/sessions/%kernel.environment%"
|
2016-06-24 11:28:07 +02:00
|
|
|
fragments: ~
|
2015-01-22 08:30:07 +01:00
|
|
|
http_method_override: true
|
2016-01-14 18:35:59 +01:00
|
|
|
assets: ~
|
2022-12-15 12:02:52 +01:00
|
|
|
mailer:
|
|
|
|
dsn: "%mailer_dsn%"
|
2015-01-22 08:30:07 +01:00
|
|
|
|
|
|
|
# Twig Configuration
|
|
|
|
twig:
|
2016-06-24 11:28:07 +02:00
|
|
|
debug: "%kernel.debug%"
|
2015-01-22 08:30:07 +01:00
|
|
|
strict_variables: "%kernel.debug%"
|
2015-12-22 13:00:37 +01:00
|
|
|
form_themes:
|
2022-04-29 00:47:22 +02:00
|
|
|
- "@LexikFormFilter/Form/form_div_layout.html.twig"
|
2022-04-24 18:11:09 +02:00
|
|
|
exception_controller: Wallabag\CoreBundle\Controller\ExceptionController:showAction
|
2022-05-05 23:12:44 +02:00
|
|
|
globals:
|
|
|
|
registration_enabled: '%fosuser_registration%'
|
2015-08-20 20:39:52 +02:00
|
|
|
|
2015-01-22 08:30:07 +01:00
|
|
|
# Doctrine Configuration
|
|
|
|
doctrine:
|
|
|
|
dbal:
|
2016-06-24 11:28:07 +02:00
|
|
|
driver: "%database_driver%"
|
2015-02-04 21:26:15 +01:00
|
|
|
host: "%database_host%"
|
|
|
|
port: "%database_port%"
|
|
|
|
dbname: "%database_name%"
|
|
|
|
user: "%database_user%"
|
|
|
|
password: "%database_password%"
|
2016-10-01 10:52:13 +02:00
|
|
|
charset: "%database_charset%"
|
2016-06-24 11:28:07 +02:00
|
|
|
path: "%database_path%"
|
2016-10-07 21:00:13 +02:00
|
|
|
unix_socket: "%database_socket%"
|
2015-01-22 08:30:07 +01:00
|
|
|
|
|
|
|
orm:
|
|
|
|
auto_generate_proxy_classes: "%kernel.debug%"
|
2015-03-28 11:29:19 +01:00
|
|
|
entity_managers:
|
|
|
|
default:
|
|
|
|
auto_mapping: true
|
2015-01-22 08:30:07 +01:00
|
|
|
|
2015-10-14 21:30:25 +02:00
|
|
|
stof_doctrine_extensions:
|
|
|
|
default_locale: "%locale%"
|
|
|
|
translation_fallback: true
|
|
|
|
orm:
|
|
|
|
default:
|
|
|
|
tree: true
|
|
|
|
sluggable: true
|
|
|
|
|
2016-01-08 16:27:29 +01:00
|
|
|
doctrine_migrations:
|
2022-12-14 14:36:29 +01:00
|
|
|
migrations_paths:
|
|
|
|
'Application\Migrations': "%kernel.project_dir%/app/DoctrineMigrations"
|
|
|
|
storage:
|
|
|
|
table_storage:
|
|
|
|
table_name: 'migration_versions'
|
|
|
|
version_column_name: 'version'
|
|
|
|
version_column_length: 192
|
|
|
|
executed_at_column_name: 'executed_at'
|
2016-01-08 16:27:29 +01:00
|
|
|
|
2015-01-28 17:09:27 +01:00
|
|
|
fos_rest:
|
|
|
|
param_fetcher_listener: true
|
|
|
|
body_listener: true
|
|
|
|
view:
|
2016-10-15 16:46:42 +02:00
|
|
|
mime_types:
|
|
|
|
csv:
|
|
|
|
- 'text/csv'
|
|
|
|
- 'text/plain'
|
|
|
|
pdf:
|
|
|
|
- 'application/pdf'
|
|
|
|
epub:
|
|
|
|
- 'application/epub+zip'
|
|
|
|
mobi:
|
|
|
|
- 'application/x-mobipocket-ebook'
|
2015-01-28 17:09:27 +01:00
|
|
|
view_response_listener: 'force'
|
|
|
|
formats:
|
|
|
|
xml: true
|
2016-10-15 16:46:42 +02:00
|
|
|
json: true
|
|
|
|
txt: true
|
|
|
|
csv: true
|
|
|
|
pdf: true
|
|
|
|
epub: true
|
|
|
|
mobi: true
|
2015-01-28 17:09:27 +01:00
|
|
|
failed_validation: HTTP_BAD_REQUEST
|
2022-11-23 11:13:52 +01:00
|
|
|
routing_loader: false
|
2016-10-15 16:46:42 +02:00
|
|
|
format_listener:
|
|
|
|
enabled: true
|
|
|
|
rules:
|
2016-12-30 13:23:02 +01:00
|
|
|
- { path: "^/api/entries/([0-9]+)/export.(.*)", priorities: ['epub', 'mobi', 'pdf', 'txt', 'csv'], fallback_format: json, prefer_extension: false }
|
|
|
|
- { path: "^/api", priorities: ['json', 'xml'], fallback_format: json, prefer_extension: false }
|
|
|
|
- { path: "^/annotations", priorities: ['json', 'xml'], fallback_format: json, prefer_extension: false }
|
2016-10-15 16:46:42 +02:00
|
|
|
# for an unknown reason, EACH REQUEST goes to FOS\RestBundle\EventListener\FormatListener
|
|
|
|
# so we need to add custom rule for custom api export but also for all other routes of the application...
|
|
|
|
- { path: '^/', priorities: ['text/html', '*/*'], fallback_format: html, prefer_extension: false }
|
2015-01-28 17:09:27 +01:00
|
|
|
|
2015-09-29 14:52:46 +02:00
|
|
|
nelmio_api_doc:
|
2022-11-06 13:00:41 +01:00
|
|
|
areas:
|
|
|
|
default:
|
|
|
|
disable_default_routes: true
|
|
|
|
documentation:
|
|
|
|
info:
|
|
|
|
title: wallabag API documentation
|
|
|
|
description: This is the API documentation of wallabag
|
|
|
|
version: 2.x
|
|
|
|
securityDefinitions:
|
|
|
|
Bearer:
|
|
|
|
type: apiKey
|
|
|
|
description: 'Value: Bearer {jwt}'
|
|
|
|
name: Authorization
|
|
|
|
in: header
|
|
|
|
security:
|
|
|
|
- Bearer: []
|
2015-02-28 13:14:43 +01:00
|
|
|
|
|
|
|
nelmio_cors:
|
|
|
|
defaults:
|
|
|
|
allow_credentials: false
|
|
|
|
allow_origin: []
|
|
|
|
allow_headers: []
|
|
|
|
allow_methods: []
|
|
|
|
expose_headers: []
|
|
|
|
max_age: 0
|
|
|
|
hosts: []
|
|
|
|
#origin_regex: false
|
|
|
|
paths:
|
|
|
|
'^/api/':
|
|
|
|
allow_origin: ['*']
|
2017-10-04 11:19:09 +02:00
|
|
|
allow_headers: ['Authorization','content-type']
|
2016-08-18 11:30:32 +02:00
|
|
|
allow_methods: ['POST', 'PUT', 'PATCH','GET', 'DELETE']
|
2015-02-28 13:14:43 +01:00
|
|
|
max_age: 3600
|
2016-08-12 10:01:53 +02:00
|
|
|
'^/oauth/':
|
2015-02-28 13:14:43 +01:00
|
|
|
allow_origin: ['*']
|
2017-10-04 11:19:09 +02:00
|
|
|
allow_headers: ['Authorization','content-type']
|
2015-02-28 13:14:43 +01:00
|
|
|
allow_methods: ['POST', 'PUT', 'GET', 'DELETE']
|
|
|
|
max_age: 3600
|
|
|
|
'^/':
|
|
|
|
#origin_regex: true
|
2017-10-04 11:19:09 +02:00
|
|
|
allow_origin: ['*']
|
|
|
|
allow_headers: ['Authorization','content-type']
|
2015-02-28 13:14:43 +01:00
|
|
|
allow_methods: ['POST', 'PUT', 'GET', 'DELETE']
|
|
|
|
max_age: 3600
|
|
|
|
hosts: ['^api\.']
|
2015-02-23 22:55:06 +01:00
|
|
|
|
2015-08-18 11:08:45 +02:00
|
|
|
fos_user:
|
|
|
|
db_driver: orm
|
2016-06-24 11:55:45 +02:00
|
|
|
firewall_name: secured_area
|
2015-10-02 14:51:41 +02:00
|
|
|
user_class: Wallabag\UserBundle\Entity\User
|
2015-09-29 14:31:52 +02:00
|
|
|
registration:
|
|
|
|
confirmation:
|
2016-06-01 21:27:35 +02:00
|
|
|
enabled: "%fosuser_confirmation%"
|
2016-01-23 14:30:56 +01:00
|
|
|
from_email:
|
2022-12-13 13:39:24 +01:00
|
|
|
address: "%from_email%"
|
|
|
|
sender_name: wallabag
|
|
|
|
service:
|
2022-12-15 12:02:52 +01:00
|
|
|
mailer: Wallabag\UserBundle\Mailer\UserMailer
|
2016-11-21 15:12:11 +01:00
|
|
|
|
2015-09-29 14:31:52 +02:00
|
|
|
fos_oauth_server:
|
|
|
|
db_driver: orm
|
|
|
|
client_class: Wallabag\ApiBundle\Entity\Client
|
|
|
|
access_token_class: Wallabag\ApiBundle\Entity\AccessToken
|
|
|
|
refresh_token_class: Wallabag\ApiBundle\Entity\RefreshToken
|
|
|
|
auth_code_class: Wallabag\ApiBundle\Entity\AuthCode
|
|
|
|
service:
|
2016-11-21 15:12:11 +01:00
|
|
|
user_provider: fos_user.user_provider.username_email
|
2016-11-21 07:29:09 +01:00
|
|
|
options:
|
2020-04-08 09:18:17 +02:00
|
|
|
refresh_token_lifetime: "%fos_oauth_server_refresh_token_lifetime%"
|
|
|
|
access_token_lifetime: "%fos_oauth_server_access_token_lifetime%"
|
2016-11-21 15:12:11 +01:00
|
|
|
|
2015-10-13 22:43:15 +02:00
|
|
|
scheb_two_factor:
|
2018-12-02 12:43:05 +01:00
|
|
|
trusted_device:
|
2015-10-13 22:43:15 +02:00
|
|
|
enabled: true
|
|
|
|
cookie_name: wllbg_trusted_computer
|
2018-12-02 12:43:05 +01:00
|
|
|
lifetime: 2592000
|
|
|
|
|
2018-12-03 06:51:06 +01:00
|
|
|
backup_codes:
|
|
|
|
enabled: "%twofactor_auth%"
|
|
|
|
|
2018-12-02 12:43:05 +01:00
|
|
|
google:
|
|
|
|
enabled: "%twofactor_auth%"
|
2020-03-26 15:32:01 +01:00
|
|
|
issuer: "%server_name%"
|
2022-04-29 00:47:22 +02:00
|
|
|
template: "@WallabagUser/Authentication/form.html.twig"
|
2015-10-13 22:43:15 +02:00
|
|
|
|
|
|
|
email:
|
2016-06-01 21:27:35 +02:00
|
|
|
enabled: "%twofactor_auth%"
|
|
|
|
sender_email: "%twofactor_sender%"
|
2015-10-13 22:43:15 +02:00
|
|
|
digits: 6
|
2022-04-29 00:47:22 +02:00
|
|
|
template: "@WallabagUser/Authentication/form.html.twig"
|
2022-04-24 16:11:14 +02:00
|
|
|
mailer: Wallabag\UserBundle\Mailer\AuthCodeMailer
|
2015-10-24 15:11:06 +02:00
|
|
|
|
|
|
|
kphoen_rulerz:
|
2017-02-05 18:02:09 +01:00
|
|
|
targets:
|
2015-10-24 15:11:06 +02:00
|
|
|
doctrine: true
|
2016-02-19 14:33:28 +01:00
|
|
|
|
2016-01-15 08:24:32 +01:00
|
|
|
old_sound_rabbit_mq:
|
|
|
|
connections:
|
|
|
|
default:
|
2016-09-03 17:36:57 +02:00
|
|
|
host: "%rabbitmq_host%"
|
|
|
|
port: "%rabbitmq_port%"
|
|
|
|
user: "%rabbitmq_user%"
|
|
|
|
password: "%rabbitmq_password%"
|
2016-01-15 08:24:32 +01:00
|
|
|
vhost: /
|
2016-09-03 17:36:57 +02:00
|
|
|
lazy: true
|
2016-01-15 08:24:32 +01:00
|
|
|
producers:
|
2016-09-04 21:49:21 +02:00
|
|
|
import_pocket:
|
2016-01-15 08:24:32 +01:00
|
|
|
connection: default
|
|
|
|
exchange_options:
|
2016-09-03 17:36:57 +02:00
|
|
|
name: 'wallabag.import.pocket'
|
2016-01-15 08:24:32 +01:00
|
|
|
type: topic
|
2016-09-04 21:49:21 +02:00
|
|
|
import_readability:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.readability'
|
|
|
|
type: topic
|
2016-11-04 22:44:31 +01:00
|
|
|
import_pinboard:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.pinboard'
|
|
|
|
type: topic
|
2021-02-08 09:08:12 +01:00
|
|
|
import_delicious:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.delicious'
|
|
|
|
type: topic
|
2016-09-27 17:01:14 +02:00
|
|
|
import_instapaper:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.instapaper'
|
|
|
|
type: topic
|
2016-09-04 21:49:21 +02:00
|
|
|
import_wallabag_v1:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.wallabag_v1'
|
|
|
|
type: topic
|
|
|
|
import_wallabag_v2:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.wallabag_v2'
|
|
|
|
type: topic
|
2019-11-07 12:17:01 +01:00
|
|
|
import_elcurator:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.elcurator'
|
|
|
|
type: topic
|
2016-09-21 18:00:08 +02:00
|
|
|
import_firefox:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.firefox'
|
|
|
|
type: topic
|
|
|
|
import_chrome:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.chrome'
|
|
|
|
type: topic
|
2016-01-15 08:24:32 +01:00
|
|
|
consumers:
|
2016-09-04 21:49:21 +02:00
|
|
|
import_pocket:
|
2016-01-15 08:24:32 +01:00
|
|
|
connection: default
|
|
|
|
exchange_options:
|
2016-09-03 17:36:57 +02:00
|
|
|
name: 'wallabag.import.pocket'
|
2016-01-15 08:24:32 +01:00
|
|
|
type: topic
|
|
|
|
queue_options:
|
2016-09-03 17:36:57 +02:00
|
|
|
name: 'wallabag.import.pocket'
|
2016-09-14 10:17:22 +02:00
|
|
|
callback: wallabag_import.consumer.amqp.pocket
|
2016-12-15 21:58:20 +01:00
|
|
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
2016-09-04 21:49:21 +02:00
|
|
|
import_readability:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.readability'
|
|
|
|
type: topic
|
|
|
|
queue_options:
|
|
|
|
name: 'wallabag.import.readability'
|
2016-09-14 10:17:22 +02:00
|
|
|
callback: wallabag_import.consumer.amqp.readability
|
2016-12-15 21:58:20 +01:00
|
|
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
2016-09-27 17:01:14 +02:00
|
|
|
import_instapaper:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.instapaper'
|
|
|
|
type: topic
|
|
|
|
queue_options:
|
|
|
|
name: 'wallabag.import.instapaper'
|
|
|
|
callback: wallabag_import.consumer.amqp.instapaper
|
2016-12-15 21:58:20 +01:00
|
|
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
2016-11-04 22:44:31 +01:00
|
|
|
import_pinboard:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.pinboard'
|
|
|
|
type: topic
|
|
|
|
queue_options:
|
|
|
|
name: 'wallabag.import.pinboard'
|
|
|
|
callback: wallabag_import.consumer.amqp.pinboard
|
2016-12-15 21:58:20 +01:00
|
|
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
2021-02-08 09:08:12 +01:00
|
|
|
import_delicious:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.delicious'
|
|
|
|
type: topic
|
|
|
|
queue_options:
|
|
|
|
name: 'wallabag.import.delicious'
|
|
|
|
callback: wallabag_import.consumer.amqp.delicious
|
|
|
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
2016-09-04 21:49:21 +02:00
|
|
|
import_wallabag_v1:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.wallabag_v1'
|
|
|
|
type: topic
|
|
|
|
queue_options:
|
|
|
|
name: 'wallabag.import.wallabag_v1'
|
2016-09-14 10:17:22 +02:00
|
|
|
callback: wallabag_import.consumer.amqp.wallabag_v1
|
2016-12-15 21:58:20 +01:00
|
|
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
2016-09-04 21:49:21 +02:00
|
|
|
import_wallabag_v2:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.wallabag_v2'
|
|
|
|
type: topic
|
|
|
|
queue_options:
|
|
|
|
name: 'wallabag.import.wallabag_v2'
|
2016-09-14 10:17:22 +02:00
|
|
|
callback: wallabag_import.consumer.amqp.wallabag_v2
|
2016-12-15 21:58:20 +01:00
|
|
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
2019-11-07 12:17:01 +01:00
|
|
|
import_elcurator:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.elcurator'
|
|
|
|
type: topic
|
|
|
|
queue_options:
|
|
|
|
name: 'wallabag.import.elcurator'
|
|
|
|
callback: wallabag_import.consumer.amqp.elcurator
|
|
|
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
2016-09-21 18:00:08 +02:00
|
|
|
import_firefox:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.firefox'
|
|
|
|
type: topic
|
|
|
|
queue_options:
|
|
|
|
name: 'wallabag.import.firefox'
|
|
|
|
callback: wallabag_import.consumer.amqp.firefox
|
2016-12-15 21:58:20 +01:00
|
|
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
2016-09-21 18:00:08 +02:00
|
|
|
import_chrome:
|
|
|
|
connection: default
|
|
|
|
exchange_options:
|
|
|
|
name: 'wallabag.import.chrome'
|
|
|
|
type: topic
|
|
|
|
queue_options:
|
|
|
|
name: 'wallabag.import.chrome'
|
|
|
|
callback: wallabag_import.consumer.amqp.chrome
|
2016-12-15 21:58:20 +01:00
|
|
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
2016-10-24 11:20:11 +02:00
|
|
|
|
|
|
|
fos_js_routing:
|
2016-10-24 12:58:19 +02:00
|
|
|
routes_to_expose:
|
|
|
|
- homepage
|
|
|
|
- starred
|
|
|
|
- archive
|
|
|
|
- all
|
|
|
|
- tag
|
|
|
|
- config
|
|
|
|
- import
|
|
|
|
- developer
|
|
|
|
- howto
|
2016-11-23 14:40:00 +01:00
|
|
|
- fos_user_security_logout
|
2016-11-18 19:21:31 +01:00
|
|
|
- new
|
2017-10-09 16:45:09 +02:00
|
|
|
|
|
|
|
jms_serializer:
|
|
|
|
handlers:
|
|
|
|
# to be removed if we switch to (default) ISO8601 datetime instead of ATOM
|
|
|
|
# see: https://github.com/schmittjoh/JMSSerializerBundle/pull/494
|
|
|
|
datetime:
|
|
|
|
default_format: "Y-m-d\\TH:i:sO" # ATOM
|
2018-10-04 14:07:20 +02:00
|
|
|
|
|
|
|
# see https://github.com/symfony/symfony-standard/pull/1133
|
|
|
|
sensio_framework_extra:
|
|
|
|
router:
|
|
|
|
annotations: false
|
2017-10-24 22:55:40 +02:00
|
|
|
|
|
|
|
httplug:
|
|
|
|
clients:
|
|
|
|
wallabag_core:
|
2022-04-24 17:48:59 +02:00
|
|
|
factory: Wallabag\CoreBundle\Helper\HttpClientFactory
|
2017-11-12 12:15:02 +01:00
|
|
|
config:
|
|
|
|
defaults:
|
|
|
|
timeout: 10
|
2017-10-24 22:55:40 +02:00
|
|
|
plugins: ['httplug.plugin.logger']
|
|
|
|
wallabag_core.entry.download_images:
|
|
|
|
factory: 'httplug.factory.auto'
|
|
|
|
plugins: ['httplug.plugin.logger']
|
|
|
|
wallabag_import.pocket.client:
|
|
|
|
factory: 'httplug.factory.auto'
|
|
|
|
plugins:
|
|
|
|
- 'httplug.plugin.logger'
|
|
|
|
- header_defaults:
|
|
|
|
headers:
|
|
|
|
'content-type': 'application/json'
|
|
|
|
'X-Accept': 'application/json'
|
|
|
|
discovery:
|
|
|
|
client: false
|
2019-08-08 15:19:53 +02:00
|
|
|
|
|
|
|
# define custom entity so we can override length attribute to fix utf8mb4 issue
|
|
|
|
craue_config:
|
|
|
|
entity_name: Wallabag\CoreBundle\Entity\InternalSetting
|