| 1234567891011121314151617181920212223242526 | [unix_http_server]file=log/supervisor.sock                       ; path to your socket file[supervisord]logfile=log/supervisord.log                    ; supervisord log filelogfile_maxbytes=50MB                           ; maximum size of logfile before rotationlogfile_backups=10                              ; number of backed up logfilesloglevel=warn                                   ; info, debug, warn, tracepidfile=log/supervisord.pid                    ; pidfile locationnodaemon=false                                  ; run supervisord as a daemonminfds=1024                                     ; number of startup file descriptorsminprocs=200                                    ; number of process descriptorsuser=root                                       ; default userchildlogdir=log[rpcinterface:supervisor]supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface[supervisorctl]serverurl=unix://log/supervisor.sock           ; use a unix:// URL  for a unix socket[program:gogs]command = gogs_startautostart = truestdout_logfile = log/supervisor-gogs-out.logstderr_logfile = log/supervisor-gogs-err.log
 |