-
-
Save betapcode/53a53b90b73136cbb041397dc3b05725 to your computer and use it in GitHub Desktop.
Supervisord config examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:uwsgi] | |
user=robdev | |
command=uwsgi --ini /path/to/config.uwsgi | |
autostart=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:hubot] | |
autostart=false | |
command=/Users/robcowie/projects/hubot-plugins/hubot/bin/hubot -a irc | |
directory=/Users/robcowie/projects/hubot-plugins/hubot | |
environment=HUBOT_IRC_NICK="hubot",HUBOT_IRC_ROOMS="#hubot",HUBOT_IRC_SERVER="127.0.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:memcached] | |
command=/usr/local/bin/memcached | |
autostart = false | |
stdout_logfile=/var/log/memcached.stdout.log | |
redirect_stderr=true | |
stopsignal=INT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:mongodb] | |
autostart=false | |
command=mongod run --config /usr/local/etc/mongod.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:mysql] | |
autostart=false | |
user=mysql | |
command=/usr/local/share/python/pidproxy /usr/local/var/mysql/machinename.local.pid /usr/local/bin/mysqld_safe --datadir=/usr/local/var/mysql --pid-file=/usr/local/var/mysql/machinename.local.pid | |
environment=PATH=/usr/local/sbin:/usr/bin:/bin:/usr/local/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:nginx] | |
user=user | |
directory=/usr/local | |
command=/usr/local/sbin/nginx | |
autostart=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:ngircd] | |
command=ngircd --nodaemon | |
autostart=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:postgres] | |
user=user | |
command=/usr/local/Cellar/postgresql/9.1.4/bin/postmaster -D /usr/local/var/postgres9 | |
stopsignal=INT | |
redirect_stderr=true | |
autostart = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:rabbitmq] | |
autostart=false | |
command=/usr/local/sbin/rabbitmq-server | |
environment=PATH=/usr/local/sbin:/usr/bin:/bin:/usr/local/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:redis] | |
directory=/usr/local/var | |
command=/usr/local/bin/redis-server /usr/local/etc/redis.conf | |
autostart=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:solr] | |
directory = /usr/local/Cellar/solr4/solr/libexec/example | |
command = java -Dsolr.solr.home=multicore -jar /usr/local/Cellar/solr4/solr/libexec/example/start.jar | |
stopsignal = KILL | |
autostart = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment