Django Setup using Nginx and Gunicorn
1–10 of 36 posts
Re: Django Setup using Nginx and Gunicorn
#2A tutorial link if you're interested: http://www.meppum.com/2009/jan/17/installing-django-ubuntu-i...
Re: Django Setup using Nginx and Gunicorn
#3Re: Django Setup using Nginx and Gunicorn
#4Re: Django Setup using Nginx and Gunicorn
#5Re: Django Setup using Nginx and Gunicorn
#6I'm not clear on the advantages of using nginx+Gunicorn over nginx+proxy-to-Apache/mod_wsgi
Re: Django Setup using Nginx and Gunicorn
#7Re: Django Setup using Nginx and Gunicorn
#8I'm not clear on the advantages of using nginx+Gunicorn over nginx+proxy-to-Apache/mod_wsgi
Re: Django Setup using Nginx and Gunicorn
#9Everyone always shows a single server setup. What if you have a dozen sites? You can't just give each one 9 processes, you will swamp your box. Is there any way to do a master setup where you can dynamically feed it your settings file?
Re: Django Setup using Nginx and Gunicorn
#10Everyone always shows a single server setup. What if you have a dozen sites? You can't just give each one 9 processes, you will swamp your box. Is there any way to do a master setup where you can dynamically feed it your settings file?
Also gunicorn wants n+1 workers, where n is the number of cores you want to devote to it. It's in the docs. So an 8 core machine would want 9 workers.
If you've got multi server scaling issues, cut and paste won't help you.