I have done the nginx configuration for serving django app .i am able to serve the django site using proxy pass for that i have to run the server manualy and then nginx serves the site.I want to execute the site using nginx but the server should get start automaticaly it shoud not be go through proxy_pass is this possible .please suggest some solution.

Thanks....

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

I think the problem here is that you try to serve your development server through nginx; That's not what it's for, it's for development purposes only.

To set up a production server you could use

Both gunicorn and apache are very stable in production environments if used correctly, these are my experiences though.

link|improve this answer
Yes you are right ....actually i am not deploying on production for local one i am trying to use hardcode proxy_pass address. – Shashi Jun 28 '11 at 10:46
feedback

You don't state your OS, so... having deployed django behind both apache and nginx in Windows, I have to say that I found nginx to be infinitely easier. However, since nginx is more of a static file server with excellent proxying capability, I ran a separate wsgi server for the django app. After trying several (and finding they were unix-only), I found CheryPy's wsgi server (which can be used independently of rest of CherryPy) to work just fine (and it's pretty fast, to boot).

link|improve this answer
I am sorry about that i am using Ubuntu – Shashi Jun 28 '11 at 10:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.