Accepting request 133409 from home:jimfunk

Web application container server that speaks it's own uwsgi protocol in addition to HTTP. Mainly used in conjunction with Nginx and Python, but supports other servers and languages as well.

OBS-URL: https://build.opensuse.org/request/show/133409
OBS-URL: https://build.opensuse.org/package/show/server:http/uwsgi?expand=0&rev=1
This commit is contained in:
Ismail Dönmez
2012-09-10 10:57:08 +00:00
committed by Git OBS Bridge
commit a5f0e22c8a
13 changed files with 860 additions and 0 deletions

9
django.ini.example Normal file
View File

@@ -0,0 +1,9 @@
[uwsgi]
socket = 127.0.0.1:3034
threads = 40
master = 1
autoload = 1
env = DJANGO_SETTINGS_MODULE=myapp.settings
module = django.core.handlers.wsgi:WSGIHandler()
chdir = /srv/djangoapp001