Django on Amazon Web Service (AWS)

Question:

I have read these tutorials : https://realpython.com/blog/python/deploying-a-django-app-to-aws-elastic-beanstalk/ and http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python-django.html

I use Django 1.8.2 and it seems that the amazon’s doc is a little bit outdated (they still used django-admin.py instead of django-admin), and some parts of it are not working (when stuff does not work, i fallback to the realpython link one).

So, I got it all working except my admin page does not load the static files. So, the css file is not loaded.

This is my settings.py :

i have also tried to use :

but it still does not work.

this is my eb config file :

I used eb deploy command after making the changes.

Is there extra steps that I need to do ? I have read in here : Default Django 1.5 admin css not working that i need to change alias, but it is for apache.

I also read from django doc files such as https://docs.djangoproject.com/en/1.8/howto/static-files/ but im not sure of what to put in the STATIC_ROOT for AWS

any help is much appreciated. Thanks

Answer:

It turns out “aws:elasticbeanstalk:container:python:staticfiles” maps files in your directory on your EC2 instance (/opt/python/current/app/static/) to /static/

setting STATIC_ROOT in settings.py to os.path.join(BASE_DIR, ‘..’,’static’) fixed the issue

Leave a Reply