Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/uwsgi.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ module = wsgi:application
# Send logs to stdout instead of file so docker picks it up and writes to AWS CloudWatch
log-master=true

# Master with 16 worker processes (based on CPU number)
# Master with 12 worker processes (based on CPU number)
master = true
processes = 16
processes = 12

# Enable the multithreading within uWSGI
# Launch the application across multiple threads inside each process
enable-threads = True
threads = 16
threads = 24

# Use http socket for integration with nginx running on the same machine
socket = localhost:5000
Expand Down