aboutsummaryrefslogtreecommitdiff
path: root/init.d
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-06-19 19:49:12 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-06-19 19:49:12 +0200
commit738cf41e1c49ff1bc43e258af250501e74e6efb9 (patch)
tree2b0fbbdb1781d871a83c912ada2ed95a216280e6 /init.d
parenta9c4d0bc1bfb54bfcac46541b82a46e216079110 (diff)
added example supervisord config to init scripts
--HG-- branch : beta
Diffstat (limited to 'init.d')
-rw-r--r--init.d/supervisord.conf51
1 files changed, 51 insertions, 0 deletions
diff --git a/init.d/supervisord.conf b/init.d/supervisord.conf
new file mode 100644
index 00000000..99bbec9b
--- /dev/null
+++ b/init.d/supervisord.conf
@@ -0,0 +1,51 @@
+; RhodeCode Supervisord
+; ##########################
+; for help see http://supervisord.org/configuration.html
+; ##########################
+
+[inet_http_server] ; inet (TCP) server disabled by default
+port=127.0.0.1:9001 ; (ip_address:port specifier, *:port for all iface)
+;username=user ; (default is no username (open server))
+;password=123 ; (default is no password (open server))
+
+[supervisord]
+logfile=/%(here)s/supervisord_rhodecode.log ; (main log file;default $CWD/supervisord.log)
+logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB)
+logfile_backups=10 ; (num of main logfile rotation backups;default 10)
+loglevel=info ; (log level;default info; others: debug,warn,trace)
+pidfile=/%(here)s/supervisord_rhodecode.pid ; (supervisord pidfile;default supervisord.pid)
+nodaemon=true ; (start in foreground if true;default false)
+minfds=1024 ; (min. avail startup file descriptors;default 1024)
+minprocs=200 ; (min. avail process descriptors;default 200)
+umask=022 ; (process file creation umask;default 022)
+user=marcink ; (default is current user, required if root)
+;identifier=supervisor ; (supervisord identifier, default is 'supervisor')
+;directory=/tmp ; (default is not to cd during start)
+;nocleanup=true ; (don't clean up tempfiles at start;default false)
+;childlogdir=/tmp ; ('AUTO' child log dir, default $TEMP)
+environment=HOME=/home/marcink ; (key value pairs to add to environment)
+;strip_ansi=false ; (strip ansi escape codes in logs; def. false)
+
+; the below section must remain in the config file for RPC
+; (supervisorctl/web interface) to work, additional interfaces may be
+; added by defining them in separate rpcinterface: sections
+[rpcinterface:supervisor]
+supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
+
+[supervisorctl]
+serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket
+;username=user ; should be same as http_username if set
+;password=123 ; should be same as http_password if set
+;prompt=mysupervisor ; cmd line prompt (default "supervisor")
+;history_file=~/.sc_history ; use readline history if available
+
+
+; restart with supervisorctl restart rhodecode:*
+[program:rhodecode]
+numprocs = 1
+numprocs_start = 5000 # possible should match ports
+directory=/home/marcink/rhodecode-dir
+command = /home/marcink/v-env/bin/paster serve rc.ini
+process_name = %(program_name)s_%(process_num)04d
+redirect_stderr=true
+stdout_logfile=/%(here)s/rhodecode.log \ No newline at end of file