mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 09:27:03 +00:00
8368ce0e4c
--HG-- rename : debug.ini => examples/debug.ini rename : fibers.yml => examples/fibers.yml rename : heavytest.ini => examples/heavytest.ini rename : logic.ini => examples/logic.ini rename : mega.xml => examples/mega.xml rename : multi.ini => examples/multi.ini rename : multi.xml => examples/multi.xml rename : protected.ini => examples/protected.ini rename : sites.xml => examples/sites.xml rename : uwsgi.xml => examples/uwsgi.xml rename : welcome.ini => examples/welcome.ini rename : werkzeug.yml => examples/werkzeug.yml rename : werkzeug_strict.yml => examples/werkzeug_strict.yml rename : zmqgevent.ini => examples/zmqgevent.ini
28 lines
418 B
INI
28 lines
418 B
INI
[uwsgi]
|
|
|
|
master = true
|
|
processes = 4
|
|
threads = 8
|
|
|
|
; initialize 4 sockets with 4 different protocols
|
|
socket = :3031
|
|
socket = :3032
|
|
socket = :3033
|
|
socket = :3034
|
|
|
|
socket-protocol = 0,uwsgi
|
|
socket-protocol = 1,http
|
|
socket-protocol = 2,fastcgi
|
|
socket-protocol = 3,uwsgidump
|
|
|
|
|
|
; add a cache with 1000 items of 96k
|
|
cache = 1000
|
|
cache-blocksize = 98304
|
|
|
|
|
|
log-micros = true
|
|
|
|
module = heavytest
|
|
mount = /cc=uwsgicc/__init__.py
|