Home:ALL Converter>Deploy Django on AWS Elasticbeanstalk

Deploy Django on AWS Elasticbeanstalk

Ask Time:2017-03-13T08:32:23         Author:user3930213

Json Formatter

i am trying to upload my Django based application on AwsElasticBeanStalk. My project structure is like this

**untitled:**

    untitled:
        settings.py,urls.py,views.py,wsgi.py
    .ebextensions:
        django.config
    app1
    templates

Whenever i try to upload my zip file(I have tried with compressing only the items inside the outermost untitled folder so that after extracting there are only files not a parent folder) I get a error , Your WSGIPATH refers to a file that does not exist and after the application is deployed when I click on link I get this error: Not Found

The requested URL / was not found on this server.

My django.config file is this: option_settings: aws:elasticbeanstalk:container:python: WSGIPath:untitled/wsgi.py

Can anybody tell me what is the problem? I have tried many hit and trials but this has been a dead end. Please help

Author:user3930213,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/42754929/deploy-django-on-aws-elasticbeanstalk
yy