From 2814c5ef472fefbb043436df808c25d3339d6a7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milien=20=28perso=29?= <4016501+unixfox@users.noreply.github.com> Date: Tue, 28 May 2024 16:22:16 +0200 Subject: [PATCH] Disable all jobs on the multiple processes --- docs/improve-public-instance.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/improve-public-instance.md b/docs/improve-public-instance.md index 1bb3c6a..67d3bc4 100644 --- a/docs/improve-public-instance.md +++ b/docs/improve-public-instance.md @@ -39,6 +39,13 @@ We assume that you have not changed the port `3000` from the default installatio ``` channel_threads: 0 feed_threads: 0 + jobs: + clear_expired_items: + enabled: false + refresh_channels: + enabled: false + refresh_feeds: + enabled: false ``` This is required so that only one invidious process refresh the subscriptions for the users. Running this process with multiple processes may introduce some conflicts. @@ -133,6 +140,13 @@ We assume that you have not changed the port `3000` from the default installatio https_only: true statistics_enabled: true hmac_key: "CHANGE_ME!!" + jobs: + clear_expired_items: + enabled: false + refresh_channels: + enabled: false + refresh_feeds: + enabled: false healthcheck: test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/trending || exit 1 interval: 30s