[supervisord]1nodaemon=true2user=root3pidfile=/var/run/supervisord.pid4logfile=/dev/null5logfile_maxbytes=06loglevel=debug78[include]9files=/etc/neko/supervisord/*.conf1011[program:x-server]12environment=HOME="/home/%(ENV_USER)s",USER="%(ENV_USER)s"13command=/usr/bin/X %(ENV_DISPLAY)s -config /etc/neko/xorg.conf -noreset -nolisten tcp14autorestart=true15priority=30016user=%(ENV_USER)s17stdout_logfile=/var/log/neko/xorg.log18stdout_logfile_maxbytes=100MB19stdout_logfile_backups=1020redirect_stderr=true2122[program:pulseaudio]23environment=HOME="/home/%(ENV_USER)s",USER="%(ENV_USER)s",DISPLAY="%(ENV_DISPLAY)s"24command=/usr/bin/pulseaudio --log-level=error --disallow-module-loading --disallow-exit --exit-idle-time=-125autorestart=true26priority=30027user=%(ENV_USER)s28stdout_logfile=/var/log/neko/pulseaudio.log29stdout_logfile_maxbytes=100MB30stdout_logfile_backups=1031redirect_stderr=true3233[program:neko]34environment=HOME="/home/%(ENV_USER)s",USER="%(ENV_USER)s",DISPLAY="%(ENV_DISPLAY)s"35command=/usr/bin/neko serve --server.static "/var/www"36stopsignal=INT37stopwaitsecs=338autorestart=true39priority=80040user=%(ENV_USER)s41stdout_logfile=/var/log/neko/neko.log42stdout_logfile_maxbytes=100MB43stdout_logfile_backups=1044redirect_stderr=true4546[unix_http_server]47file=/var/run/supervisor.sock48chmod=077049chown=root:neko5051[supervisorctl]52serverurl=unix:///var/run/supervisor.sock5354[rpcinterface:supervisor]55supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface565758