-
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #0: Added .gitignore & supervisord.conf
- Loading branch information
Dongsheng Cai
committed
Jul 21, 2012
1 parent
7a2c80b
commit bb8096e
Showing
2 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
airnotifier.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
; airnotifier's supervisor config file. | ||
|
||
[unix_http_server] | ||
file=/tmp/supervisor.sock ; (the path to the socket file) | ||
;chmod=0700 ; socket file mode (default 0700) | ||
;chown=nobody:nogroup ; socket file uid:gid owner | ||
;username=user ; (default is no username (open server)) | ||
;password=123 ; (default is no password (open server)) | ||
|
||
[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=/var/log/supervisord.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=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid) | ||
nodaemon=false ; (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=chrism ; (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=KEY=value ; (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=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket | ||
;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket | ||
;username=chris ; 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 | ||
|
||
; The below sample program section shows all possible program subsection values, | ||
; create one or more 'real' program: sections to be able to control them under | ||
; supervisor. | ||
|
||
[program:AirNotifier] | ||
command=/path/to/airnotifier/airnotifier.py | ||
process_name=airnotifier | ||
;numprocs=1 ; number of processes copies to start (def 1) | ||
directory=/path/to/airnotifier/ | ||
;umask=022 ; umask for process (default None) | ||
;priority=999 ; the relative start priority (default 999) | ||
;autostart=true ; start at supervisord start (default: true) | ||
autorestart=true ; whether/when to restart (default: unexpected) | ||
;startsecs=1 ; number of secs prog must stay running (def. 1) | ||
;startretries=3 ; max # of serial start failures (default 3) | ||
;exitcodes=0,2 ; 'expected' exit codes for process (default 0,2) | ||
;stopsignal=QUIT ; signal used to kill process (default TERM) | ||
;stopwaitsecs=10 ; max num secs to wait b4 SIGKILL (default 10) | ||
;killasgroup=false ; SIGKILL the UNIX process group (def false) | ||
;user=chrism ; setuid to this UNIX account to run the program | ||
;redirect_stderr=true ; redirect proc stderr to stdout (default false) | ||
stdout_logfile=/var/log/airnotifier.log | ||
stderr_logfile=/var/log/airnotifier.log | ||
;stdout_logfile_maxbytes=1MB ; max # logfile bytes b4 rotation (default 50MB) | ||
;stdout_logfile_backups=10 ; # of stdout logfile backups (default 10) | ||
;stdout_capture_maxbytes=1MB ; number of bytes in 'capturemode' (default 0) | ||
;stdout_events_enabled=false ; emit events on stdout writes (default false) | ||
;stderr_logfile_maxbytes=1MB ; max # logfile bytes b4 rotation (default 50MB) | ||
;stderr_logfile_backups=10 ; # of stderr logfile backups (default 10) | ||
;stderr_capture_maxbytes=1MB ; number of bytes in 'capturemode' (default 0) | ||
;stderr_events_enabled=false ; emit events on stderr writes (default false) | ||
;environment=A=1,B=2 ; process environment additions (def no adds) | ||
;serverurl=AUTO ; override serverurl computation (childutils) |