From c2f10e7622f29cfa5f221a7c088a14c0d009354a Mon Sep 17 00:00:00 2001 From: Thomas <51749973+Thovi98@users.noreply.github.com> Date: Mon, 13 Nov 2023 13:58:05 +0100 Subject: [PATCH] fix services --- conf/bookwyrm-beat.service | 2 -- conf/bookwyrm-server.service | 2 -- conf/bookwyrm-worker.service | 4 +--- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/conf/bookwyrm-beat.service b/conf/bookwyrm-beat.service index 72f6947..71e574f 100644 --- a/conf/bookwyrm-beat.service +++ b/conf/bookwyrm-beat.service @@ -10,8 +10,6 @@ Group=__APP__ WorkingDirectory=__INSTALL_DIR__/ EnvironmentFile=__INSTALL_DIR__/.env ExecStart=__INSTALL_DIR__/venv/bin/celery -A celerywyrm beat -l INFO --scheduler django_celery_beat.schedulers:DatabaseScheduler -StandardOutput=append:/var/log/__APP__/__APP__-beat.log -StandardError=inherit NoNewPrivileges=yes PrivateTmp=yes diff --git a/conf/bookwyrm-server.service b/conf/bookwyrm-server.service index c0b2907..568143c 100644 --- a/conf/bookwyrm-server.service +++ b/conf/bookwyrm-server.service @@ -10,8 +10,6 @@ Group=__APP__ WorkingDirectory=__INSTALL_DIR__/ EnvironmentFile=__INSTALL_DIR__/.env ExecStart=__INSTALL_DIR__/venv/bin/gunicorn bookwyrm.wsgi:application --bind 127.0.0.1:__PORT__ -StandardOutput=append:/var/log/__APP__/__APP__.log -StandardError=inherit [Install] WantedBy=multi-user.target diff --git a/conf/bookwyrm-worker.service b/conf/bookwyrm-worker.service index f2a5f04..5c15a6f 100644 --- a/conf/bookwyrm-worker.service +++ b/conf/bookwyrm-worker.service @@ -9,9 +9,7 @@ User=__APP__ Group=__APP__ WorkingDirectory=__INSTALL_DIR__/ EnvironmentFile=__INSTALL_DIR__/.env -ExecStart=__INSTALL_DIR__/venv/bin/celery -A celerywyrm worker -l info -Q high_priority,medium_priority,low_priority,imports -StandardOutput=append:/var/log/__APP__/__APP__-worker.log -StandardError=inherit +ExecStart=__INSTALL_DIR__/venv/bin/celery -A celerywyrm worker -l info -Q high_priority,medium_priority,low_priority,streams,images,suggested_users,email,connectors,lists,inbox,imports,import_triggered,broadcast,misc NoNewPrivileges=yes PrivateTmp=yes