celeryd
871 Bytes
# Names of nodes to start
CELERYD_NODES="worker1"
# Absolute or relative path to the 'celery' command:
CELERY_BIN="/home/vagrant/.virtualenvs/colab/bin/celery"
# comment out this line if you don't use an app
CELERY_APP="colab"
# Where to chdir at start.
CELERYD_CHDIR="/vagrant/"
# Extra command-line arguments to the worker
CELERYD_OPTS="--time-limit=300 --concurrency=2"
# %N will be replaced with the first part of the nodename.
CELERYD_LOG_FILE="/var/log/celery/%N.log"
CELERYD_PID_FILE="/var/run/celery/%N.pid"
# Workers should run as an unprivileged user.
# You need to create this user manually (or you can choose
# a user/group combination that already exists, e.g. nobody).
CELERYD_USER="vagrant"
CELERYD_GROUP="vagrant"
# If enabled pid and log directories will be created if missing,
# and owned by the userid/group configured.
CELERY_CREATE_DIRS=1