Question
How to deploy Django application with nginx and gunicorn in jenkins ?
I am using jenkins to deploy Django application .In my jenkins “Execute shell” I am using “gunicorn appname.wsgi:application –bind=serverip:port” to deploy ,and “sudo service nginx restart"to restart the nginx. But because of the "gunicorn bind” command build is taking more than 2days. I have tried “gunicorn appname.wsgi:application –bind=serverip:port –daemon” which is not working in jenkins “execute shell” and “sudo service nginx restart” is also not working .Please help !!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×