celeryd.sysconfig 835 B

12345678910111213141516171819202122232425
  1. # In CentOS, contents should be placed in the file /etc/sysconfig/celeryd
  2. # Available options: http://celery.readthedocs.org/en/latest/tutorials/daemonizing.html#available-options
  3. # Names of nodes to start (space-separated)
  4. #CELERYD_NODES="my_application-node_1"
  5. # Where to chdir at start. This could be the root of a virtualenv.
  6. #CELERYD_CHDIR="/path/to/my_application"
  7. # Absolute or relative path to the celery program
  8. #CELERY_BIN="/usr/local/bin/celery"
  9. # App instance to use (value for --app argument).
  10. #CELERY_APP="my_application"
  11. # Create log/pid dirs, if they don't already exist
  12. #CELERY_CREATE_DIRS=1
  13. # %n will be replaced with the nodename
  14. #CELERYD_LOG_FILE="/path/to/my_application/log/%n.log"
  15. #CELERYD_PID_FILE="/var/run/celery/%n.pid"
  16. # Workers run as an unprivileged user
  17. #CELERYD_USER=celery
  18. #CELERYD_GROUP=celery