initial commit
This commit is contained in:
1
oofsgi/.gitignore
vendored
Normal file
1
oofsgi/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
uwsgi.sock
|
29
oofsgi/uwsgi.ini
Normal file
29
oofsgi/uwsgi.ini
Normal file
@ -0,0 +1,29 @@
|
||||
[uwsgi]
|
||||
# emperor
|
||||
chdir = ..
|
||||
|
||||
# socket = [addr:port]
|
||||
socket = oofsgi/uwsgi.sock
|
||||
chmod-socket = 664
|
||||
|
||||
# WSGI module and callable
|
||||
# module = [wsgi_module_name]:[application_callable_name]
|
||||
module = WSGI:app
|
||||
|
||||
# master = [master process (true of false)]
|
||||
master = true
|
||||
|
||||
# debugging
|
||||
catch-exceptions = True
|
||||
|
||||
# disable request logging
|
||||
disable-logging=True
|
||||
|
||||
# performance
|
||||
processes = 4
|
||||
buffer-size = 8192
|
||||
|
||||
# async
|
||||
loop = gevent
|
||||
gevent = 2048
|
||||
gevent-monkey-patch = true
|
Reference in New Issue
Block a user