Changes between Initial Version and Version 1 of Ticket #31717, comment 2


Ignore:
Timestamp:
Jun 18, 2020, 7:18:07 PM (4 years ago)
Author:
Yu Li

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31717, comment 2

    initial v1  
    11@ylilarry which uwsgi version? Can you share your uwsgi config?
     2
     3I've tried multiple configurations with uwsgi.
     4
     5This is the one I felt it would be the safest and still failed
     6
     7{{{
     8
     9[uwsgi]
     10strict = true
     11wsgi-file = project/wsgi.py
     12threads = 1
     13stats = 0.0.0.0:9191
     14master = true
     15log-master = true
     16workers = 1
     17enable-threads = false
     18single-interpreter = true
     19die-on-term = true
     20need-app = true
     21
     22Name: uWSGI
     23Version: 2.0.19.1
     24Summary: The uWSGI server
     25Home-page: https://uwsgi-docs.readthedocs.io/en/latest/
     26Author: Unbit
     27Author-email: info@unbit.it
     28License: GPLv2+
     29Location: /usr/local/lib/python3.8/dist-packages
     30
     31}}}
Back to Top