| 1234567891011121314151617 |
- [uwsgi]
- module = web
- callable = app
- plugin = python3
- master = true
- processes = 5
- socket = /tmp/news-backend.sock
- chmod-socket = 666
- vacuum = true
- die-on-term = true
- enable-threads = true
- # use threads instead of processes
- lazy-apps = true
- # avoids threadpools to be opened in the master but not in the workers
|