19 lines
450 B
Django/Jinja
19 lines
450 B
Django/Jinja
{{ ansible_header | comment }}
|
|
|
|
[uwsgi]
|
|
uid = www-data
|
|
gid = www-data
|
|
# Django-related settings
|
|
# the base directory (full path)
|
|
module = printer.wsgi:application
|
|
plugin = python3
|
|
# process-related settings
|
|
# master
|
|
master = true
|
|
# maximum number of worker processes
|
|
processes = 10
|
|
# clear environment on exit
|
|
vacuum = true
|
|
# Touch reload
|
|
touch-reload = {{ module_path }}/settings.py
|