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….
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.