-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ckan-2.10-upgrade' of github.com:TNRIS/twdh_ckan_docker…
… into ckan-2.10-upgrade
- Loading branch information
Showing
3 changed files
with
70 additions
and
2 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
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,44 @@ | ||
; ======================================================= | ||
; Supervisor configuration for CKAN background job worker | ||
; ======================================================= | ||
|
||
; 1. Copy this file to /etc/supervisor/conf.d | ||
; 2. Make sure the paths below match your setup | ||
|
||
|
||
[program:ckan-worker] | ||
|
||
; Use the full paths to the virtualenv and your configuration file here. | ||
; command=/usr/lib/ckan/default/bin/ckan -c /etc/ckan/default/ckan.ini jobs worker | ||
command=/srv/app/virtualenv/bin/ckan -c production.ini jobs worker | ||
|
||
|
||
; User the worker runs as. | ||
; user=www-data | ||
user=ckan | ||
|
||
|
||
; Start just a single worker. Increase this number if you have many or | ||
; particularly long running background jobs. | ||
numprocs=1 | ||
process_name=%(program_name)s-%(process_num)02d | ||
|
||
|
||
; Log files. | ||
stdout_logfile=/var/log/ckan/ckan-worker.stdout.log | ||
stderr_logfile=/var/log/ckan/ckan-worker.stderr.log | ||
|
||
|
||
; Make sure that the worker is started on system start and automatically | ||
; restarted if it crashes unexpectedly. | ||
autostart=true | ||
autorestart=true | ||
|
||
|
||
; Number of seconds the process has to run before it is considered to have | ||
; started successfully. | ||
startsecs=10 | ||
|
||
; Need to wait for currently executing tasks to finish at shutdown. | ||
; Increase this if you have very long running tasks. | ||
stopwaitsecs = 600 |
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,23 @@ | ||
[unix_http_server] | ||
file = /tmp/supervisor.sock | ||
chmod = 0777 | ||
chown = nobody:nogroup | ||
|
||
[supervisord] | ||
logfile = /tmp/supervisord.log | ||
logfile_maxbytes = 50MB | ||
logfile_backups=10 | ||
loglevel = info | ||
pidfile = /tmp/supervisord.pid | ||
nodaemon = true | ||
umask = 022 | ||
identifier = supervisor | ||
|
||
[supervisorctl] | ||
serverurl = unix:///tmp/supervisor.sock | ||
|
||
[rpcinterface:supervisor] | ||
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface | ||
|
||
[include] | ||
files = /etc/supervisor/conf.d/* |