1; CHART notebook supervisor config file
 2
 3; Configurare the supervisor web server
 4[inet_http_server]
 5port=0.0.0.0:10501
 6username=notebook
 7<<<hidden due to potential security issue>>>
 8
 9; Configure supervisor control process
10[supervisord]
11logfile=/tcc1/proj/chart/env/OPE/scratch/notebook/logs/supervisord.log
12pidfile=/tcc1/proj/chart/env/OPE/scratch/notebook/supervisord.pid
13#nodaemon=false
14#identifier=CHART_TCE_VAL
15childlogdir=/tcc1/proj/chart/env/OPE/scratch/notebook/logs
16
17[rpcinterface:supervisor]
18supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
19
20; Configure supervisorctl command line tool
21[supervisorctl]
22serverurl=http://concorde:10501
23username=notebook
24<<<hidden due to potential security issue>>>
25#prompt=CHART_TCE_VAL
26
27; iPython notebook server
28[program:notebook]
29environment=PYTHONPATH=/tcc1/proj/chart/env/OPE/chart:/tcc1/proj/chart/env/OPE/charteps
30command=ipython notebook
31    --no-browser
32    --logappend log.file
33    --port 10500
34    --notebook-dir /tcc1/proj/chart/env/OPE/scratch/notebook/notebooks
35    --profile-dir /tcc1/proj/chart/env/OPE/scratch/notebook/profile
36    --NotebookApp.base_kernel_url=/eps/notebook
37    --NotebookApp.base_url=/eps/notebook
38    --NotebookApp.trust_xheaders=True
39    --NotebookApp.ip=127.0.0.1
40autostart=true
41autorestart=true
42startsecs=3
43startretries=0
44priority=1