***Script***A working `uwsgi conf` for a django app in Cloudpanel

[uwsgi]
plugins       = python3

master        = true
protocol      = uwsgi
socket        = 127.0.0.1:8090
chdir         = /home/<user>/htdocs/<TLD>/
module        = <user>.wsgi:application
# In case you're using virtualenv uncomment this:
; virtualenv    = /home/<user>/.local/share/virtualenvs/<VENV>/
; callable      = application

# Needed for OAuth/OpenID
buffer-size   = 8192

# Reload when consuming too much of memory
reload-on-rss = 250

# Increase number of workers for heavily loaded sites
workers       = 4

# Enable threads for Sentry error submission
enable-threads = true

# Child processes do not need file descriptors
close-on-exec = true

# Avoid default 0000 umask
umask = 0022

# Run as weblate user
uid = <user>
gid = <user>

# Enable harakiri mode (kill requests after some time)
# harakiri = 3600
# harakiri-verbose = true

# Enable uWSGI stats server
# stats = :1717
# stats-http = true

# Do not log some errors caused by client disconnects
ignore-sigpipe = true
ignore-write-errors = true
disable-write-exception = true