Using Nginx, you don't tun the django app "inside" Nginx like you would using mod_wsgi.
Instead, you use Nginx for reverse proxying (see the proxy_pass directive), and use a Python webserver for your app(s), e.g. uwsgi, gunicorn. Serving multiple apps is easy. Just use multiple location blocks and proxy_pass directives. Cheers, On Sun, Nov 10, 2013 at 1:20 PM, Sandeep kaur <[email protected]> wrote: > Hi, > I want to deploy multiple django apps on a server with nginx. When we do > it on apache > we do it in /etc/apache2/httpd.conf and following content : > > WSGIScriptAlias /django /home/sandy/django_app/apache/django.wsgi > > <Directory /home/sandy/django_app/apache/> > > Order allow,deny > Allow from all > </Directory> > > Thus this app can be accessed by example.com/django or if any other app > on same server then with example.com/django2. How can we do this with > nginx? > > Your help will be appreciated. :) > Thank you. > > -- > Sandeep Kaur > E-Mail: [email protected] > Blog: sandymadaan.wordpress.com > > > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAF66xG3e34QLWBHvpPO%2B72JAA9FbK3Oo%3DRNO-YuyLvb2LU-aFw%40mail.gmail.com > . > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAMuNovQmSdzTqbrYmoSGJonvpHcS0tc0FvxtgNBpMppbUv%2BW5Q%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.

