Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@dshafer
Latest commit b50369b Feb 10, 2020 History
1 contributor

Users who have contributed to this file

38 lines (34 sloc) 782 Bytes
[supervisord]
logfile=/tmp/logsuperd
logfile_maxbytes=0
loglevel=error
nodaemon=true
user=root
[program:cron]
command=/usr/sbin/crond -n
autostart=true
autorestart=true
stdout_logfile=/tmp/logcrond
stdout_logfile_maxbytes=0
stderr_logfile=/tmp/logcrond
stderr_logfile_maxbytes=0
directory=/usr/bin
[program:httpd]
command=httpd -DFOREGROUND %(ENV_HTTPD_ARGS)s
autostart=true
autorestart=true
stdout_logfile=/tmp/loghttpd
stdout_logfile_maxbytes=0
stderr_logfile=/tmp/loghttpd
stderr_logfile_maxbytes=0
[program:shibd]
command=/usr/sbin/shibd -f
autostart=true
autorestart=true
stdout_logfile=/tmp/logshibd
stdout_logfile_maxbytes=0
stderr_logfile=/tmp/logshibd
stderr_logfile_maxbytes=0
environment=LD_LIBRARY_PATH=/opt/shibboleth/lib64
[include]
files=/etc/supervisor/conf.d/*