| 123456789101112131415161718192021222324252627 | ; ============================;  celerybeat supervisor example; ============================; NOTE: If you're using Django, you shouldn't use this file.; Use; http://github.com/celery/django-celery/tree/master/contrib/supervisord/celerybeat.conf; instead![program:celerybeat]command=celerybeat --schedule /var/lib/celery/celerybeat-schedule --loglevel=INFO; Set PYTHONPATH to the directory containing celeryconfig.pyenvironment=PYTHONPATH=/path/to/projectdirectory=/path/to/projectuser=nobodynumprocs=1stdout_logfile=/var/log/celerybeat.logstderr_logfile=/var/log/celerybeat.logautostart=trueautorestart=truestartsecs=10; if rabbitmq is supervised, set its priority higher; so it starts firstpriority=999
 |