symposion_app/deploy/uwsgi.ini

36 lines
1.4 KiB
INI
Raw Permalink Normal View History

2023-04-06 10:35:08 +00:00
[uwsgi]
strict = true # Fail if unknown config parameter found.
plugins = python3
chdir = {{ project_dir }}
home = {{ virtualenv }}
2023-04-15 04:55:29 +00:00
module = pinaxcon.wsgi
2023-04-06 10:35:08 +00:00
master = true
2023-04-20 10:27:50 +00:00
socket = /tmp/{{ site_name }}_uwsgi.sock
2023-04-06 10:35:08 +00:00
processes = 3
2023-04-24 08:47:00 +00:00
harakiri = 30
2023-04-06 10:35:08 +00:00
max-requests = 5000
vacuum = true
# For Sentry, see https://docs.sentry.io/clients/python/advanced/#a-note-on-uwsgi.
enable-threads = true
log-prefix = {{ site_name }}
# Enable uWSGI stats server for use with uwsgitop.
# Run with: `sudo -u www-data uwsgitop /run/{{ site_name }}/django_uwsgi_stats.socket`
2023-04-20 10:27:50 +00:00
stats = /tmp/{{ site_name }}_uwsgi_stats.socket
2023-04-06 10:35:08 +00:00
# Memory reporting is useful for reviewing memory consumption with uwsgitop, but
# makes the logs a little noiser.
# memory-report = true
# Always use UTF-8 as the encoding for reading/writing files and other,
# regardless of system preferences. Will be default in Python 3.15. We were
# originally specifying LANG=en_AU.UTF-8 here, to handle Unicode chars in
# uploaded filenames, but this broke down when that locale wasn't
# installed. Using Python's UTF Mode should side-step this. See
# https://docs.python.org/3/library/os.html#utf8-mode.
env = PYTHONUTF8=1
# Haven't decided how to securely handle code being able to write __pycache__
# directories and bytecode into read-only directories.
env = PYTHONDONTWRITEBYTECODE=true
# Per Django deployment checklist.
env = PYTHONHASHSEED=random