20 lines
490 B
Python
20 lines
490 B
Python
# gunicorn script file
|
|
|
|
bind = '127.0.0.1:8079'
|
|
|
|
raw_env = ["DJANGO_SETTINGS_MODULE=core._settings.development"]
|
|
|
|
worker_tmp_dir = "/tmp"
|
|
|
|
#
|
|
# uncomment only if supervisor does not set these!
|
|
# see https://stackoverflow.com/questions/53570850/djangogunicorn-operation-not-permitted
|
|
|
|
# user = 'ronny'
|
|
# group = 'wheel'
|
|
|
|
access_logfile = \
|
|
'/usr/local/var/www/savage_lands.dvp/logs/gunicorn/access.log'
|
|
|
|
error_logfile = \
|
|
'/usr/local/var/www/savage_lands.dvp/logs/gunicorn/error.log'
|