skip to Main Content

gunicorn current command vanished from the unit file – Nginx

i am trying to follow the following tutorial to deploy my flask app. https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-18-04 i am seeing the error, current command vanished from the unit file, execution of the command list wont be resumed, when i check systemctl of the…

VIEW QUESTION

Django doesn't serve static files with NGINX + GUNICORN

Everything worked very well before gunicorn and nginx, static files were served to the website. But now, it doesn't work anymore. Settings.py STATICFILES_DIRS = [ '/root/vcrm/vcrm1/static/' ] STATIC_ROOT = os.path.join(BASE_DIR, 'vcrm/static') STATIC_URL = '/static/' MEDIA_ROOT = '/root/vcrm/vcrm1/vcrm/media/' MEDIA_URL = '/media/'…

VIEW QUESTION
Back To Top
Search