From de3d716ae4e8ca98dabdcb2ec9c18219e05856f7 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Sat, 2 Jul 2016 14:35:52 +0200 Subject: Add option to disable registration --- app/config/parameters.yml.dist | 1 + 1 file changed, 1 insertion(+) (limited to 'app/config/parameters.yml.dist') diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist index d45839f4..d092e139 100644 --- a/app/config/parameters.yml.dist +++ b/app/config/parameters.yml.dist @@ -34,6 +34,7 @@ parameters: twofactor_sender: no-reply@wallabag.org # fosuser stuff + fosuser_registration: true fosuser_confirmation: true from_email: no-reply@wallabag.org -- cgit v1.2.3 From 56c778b4152a1b886353933276ee3626e4e8c004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 15 Jan 2016 08:24:32 +0100 Subject: 1st draft for rabbitMQ --- app/config/parameters.yml.dist | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'app/config/parameters.yml.dist') 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: fosuser_confirmation: true from_email: no-reply@wallabag.org + + rss_limit: 50 + + # pocket import + pocket_consumer_key: xxxxxxxx + + # RabbitMQ processing + rabbitmq: false + rabbitmq_host: localhost + rabbitmq_port: 5672 + rabbitmq_user: guest + rabbitmq_password: guest -- cgit v1.2.3 From ef75e1220ebb76a8df019d946460ad612759f0bb Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Sat, 3 Sep 2016 17:36:57 +0200 Subject: Send every imported item to the queue Instead of queing real Entry to process, we queue all the item to import from Pocket in a raw format. Then, the worker retrieve that information, find / create the entry and save it. --- app/config/parameters.yml.dist | 4 ---- 1 file changed, 4 deletions(-) (limited to 'app/config/parameters.yml.dist') diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist index e925b412..a59dc02c 100644 --- a/app/config/parameters.yml.dist +++ b/app/config/parameters.yml.dist @@ -41,11 +41,7 @@ parameters: rss_limit: 50 - # pocket import - pocket_consumer_key: xxxxxxxx - # RabbitMQ processing - rabbitmq: false rabbitmq_host: localhost rabbitmq_port: 5672 rabbitmq_user: guest -- cgit v1.2.3 From b3437d58ae224121375c99e9288d8b808524e624 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Fri, 9 Sep 2016 21:02:03 +0200 Subject: Enable Redis async import - using javibravo/simpleue - internal config value are now `import_with_redis` & `import_with_rabbit` which are more clear - if both option are enable rabbit will be choosen - services imports related to async are now splitted into 2 files: `redis.yml` & `rabbit.yml` - --- app/config/parameters.yml.dist | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app/config/parameters.yml.dist') diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist index a59dc02c..f2e5bec3 100644 --- a/app/config/parameters.yml.dist +++ b/app/config/parameters.yml.dist @@ -46,3 +46,7 @@ parameters: rabbitmq_port: 5672 rabbitmq_user: guest rabbitmq_password: guest + + # Redis processing + redis_host: localhost + redis_port: 6379 -- cgit v1.2.3 From 6d204f53820524ca4e501c39a5a1adae01b60e6d Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Fri, 7 Oct 2016 21:00:13 +0200 Subject: Add ability to use socket For Redis & MySQL --- app/config/parameters.yml.dist | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/config/parameters.yml.dist') diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist index f2e5bec3..ece4903a 100644 --- a/app/config/parameters.yml.dist +++ b/app/config/parameters.yml.dist @@ -18,6 +18,7 @@ parameters: database_password: ~ database_path: "%kernel.root_dir%/../data/db/wallabag.sqlite" database_table_prefix: wallabag_ + database_socket: null mailer_transport: smtp mailer_host: 127.0.0.1 @@ -48,5 +49,7 @@ parameters: rabbitmq_password: guest # Redis processing + redis_scheme: tcp redis_host: localhost redis_port: 6379 + redis_path: null -- cgit v1.2.3