##// END OF EJS Templates
.hgtags: remove accidental unused double tag of 0.4.0rc1...
.hgtags: remove accidental unused double tag of 0.4.0rc1 Initially, when tagging 0.4.0rc1 I made a mistake locally, fixed it, then stripped the tagging commit, and retagged. However, it seems something went wrong in this procedure and the original commit also is shown in .hgtags. This commit never got pushed, is hidden (obsolete) in my local repository, so remove the corresponding line in .hgtags to avoid any confusion.

File last commit:

r6509:2c3d3009 default
r7529:42383fe2 default
Show More
supervisord.conf
51 lines | 2.6 KiB | text/plain | TextLexer
Bradley M. Kuhn
General renaming to Kallithea
r4212 ; Kallithea Supervisord
added example supervisord config to init scripts
r2483 ; ##########################
; 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]
Bradley M. Kuhn
Rename init scripts and fix references inside them
r4190 logfile=/%(here)s/supervisord_kallithea.log ; (main log file;default $CWD/supervisord.log)
added example supervisord config to init scripts
r2483 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)
Bradley M. Kuhn
Rename init scripts and fix references inside them
r4190 pidfile=/%(here)s/supervisord_kallithea.pid ; (supervisord pidfile;default supervisord.pid)
added example supervisord config to init scripts
r2483 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)
Bradley M. Kuhn
Rename init scripts and fix references inside them
r4190 user=username ; (default is current user, required if root)
added example supervisord config to init scripts
r2483 ;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)
Mads Kiilerich
docs: rework stuff...
r4902 environment=HOME=/srv/kallithea ; (key value pairs to add to environment)
added example supervisord config to init scripts
r2483 ;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
Bradley M. Kuhn
Rename init scripts and fix references inside them
r4190 ; restart with supervisorctl restart kallithea:*
[program:kallithea]
added example supervisord config to init scripts
r2483 numprocs = 1
numprocs_start = 5000 # possible should match ports
Mads Kiilerich
docs: rework stuff...
r4902 directory=/srv/kallithea
Mads Kiilerich
gearbox: replace paster with something TurboGears2-ish that still works with the Pylons stack...
r6509 command = /srv/kallithea/venv/bin/gearbox serve -c my.ini
added example supervisord config to init scripts
r2483 process_name = %(program_name)s_%(process_num)04d
Mads Kiilerich
scripts: apply whitespace cleanup to more files - opt out instead of opt in
r6333 redirect_stderr=true
stdout_logfile=/%(here)s/kallithea.log