celeryd.sysconfig 994 B

123456789101112131415161718192021222324252627
  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 first part of the nodename.
  14. # - %I will be replaced with the current child process index
  15. # and is important when using the prefork pool to avoid race conditions.
  16. #CELERYD_LOG_FILE="/path/to/my_application/log/%n%I.log"
  17. #CELERYD_PID_FILE="/var/run/celery/%n.pid"
  18. # Workers run as an unprivileged user
  19. #CELERYD_USER=celery
  20. #CELERYD_GROUP=celery