Advertisement
hfelix

supervisord.conf

Feb 2nd, 2022
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. [unix_http_server]
  2. file=/tmp/supervisor.sock
  3. chmod=0700
  4.  
  5. [supervisord]
  6. user=root
  7. nodaemon=true
  8. logfile=/var/log/supervisor/supervisord.log
  9. pidfile=/var/run/supervisord.pid;
  10. stdout_logfile=/dev/stdout
  11. loglevel=debug
  12. nodaemon=true
  13.  
  14. [rpcinterface:supervisor]
  15. supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface
  16.  
  17. [supervisorctl]
  18. serverurl=unix:///tmp/supervisor.sock
  19.  
  20. [include]
  21. files = /etc/supervisor/conf.d/*.conf
  22.  
  23. [program:apache]
  24. command=apache2ctl -DFOREGROUND
  25. killasgroup=true
  26. stopasgroup=true
  27.  
  28. [program:sshd]
  29. command=/usr/sbin/sshd -D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement