initial commit

This commit is contained in:
2021-05-14 20:29:29 +02:00
commit 30bb08712a
16 changed files with 34646 additions and 0 deletions

1
oofsgi/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
uwsgi.sock

29
oofsgi/uwsgi.ini Normal file
View 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