Top "Uwsgi" questions

uWSGI is a fast, self-healing and developer/sysadmin-friendly application container server coded in pure C.

Stuck at 100 requests uWSGI

httperf ... --rate=20 --send-buffer=4096 --recv-buffer=16384 --num-conns=100 --num-calls=10 Gives 1000 requests as expected on nginx. Total: connections 100 requests 1000 replies 1000 test-duration 5.719 s Connection rate: 17.5 …

python django nginx uwsgi httperf
Python: uWSGI configuration for NGINX+FLASK

I successfully managed to install: NGINX + uWSGI + Flask on a CentOS 6.x server but I still have some doubts in …

python nginx flask wsgi uwsgi
When is --thunder-lock beneficial?

This long, detailed, and entertaining article describes the history and design of --thunder-lock: http://uwsgi-docs.readthedocs.org/en/latest/articles/…

python uwsgi
Pass command line parameters to uwsgi script

I'm trying to pass arguments to an example wsgi application, : config_file = sys.argv[1] def application(env, start_response): start_…

python wsgi uwsgi
uwsgi: What defines the number of workers/process that a django app needs?

I have a question for sysadmins and developers. I see that uWSGI allows me to set the number or workers …

python django nginx celery uwsgi
uWSGI: --master with --emperor spawns two emperors

I can see that if I start uwsgi like this: sudo /usr/local/bin/uwsgi --emperor /etc/uwsgi/vassals --uid …

uwsgi
Nginx - Rewrite the request_uri before uwsgi_pass

I have a Nginx vhost than is configured as such: ... location /one { include uwsgi_params; uwsgi_pass unix:///.../one.sock; } …

regex nginx uwsgi bottle
Docker: Installing python cryptography on alpine linux distribution

I am a little bit new to Docker and deployment cycle. I have Django application that we would like to …

docker dockerfile uwsgi alpine python-cryptography
How to disable request logging in Django and uWSGI?

My uWSGI logs are full of entries like this for every request: localhost [pid: 4029|app: 0|req: 1/1] 127.0.0.1 () {48 vars in 906 bytes} [Wed …

django uwsgi
How do I run uWSGI as a limited-access user?

I have Django setup in NGINX + uWSGI. I'm able to get it running fine under my current logged in user (…

django nginx uwsgi limited-user