1234567891011121314151617181920212223242526 |
- [unix_http_server]
- file=/tmp/supervisor.sock
- [supervisord]
- logfile=log/supervisord.log
- logfile_maxbytes=50MB
- logfile_backups=10
- loglevel=warn
- pidfile=/tmp/supervisord.pid
- nodaemon=false
- minfds=1024
- minprocs=200
- user=root
- childlogdir=log
- [rpcinterface:supervisor]
- supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
- [supervisorctl]
- serverurl=unix:///tmp/supervisor.sock
- [program:gogs]
- command = /root/Developer/gopath/src/github.com/gogits/gogs/start.sh
- autostart = true
- stdout_logfile = log/supervisor-gogs-stderr.log
- stderr_logfile = log/supervisor-gogs-error.log
|