I have created a Django app (which is working properly locally), but I am unable to deploy in Azure Web Sites. I get a "HTTP 500 Internal Server Error".
Since the site is working locally, I believe that I might be doing something wrong in the configuration of the app.
I have the following in app settings:
DJANGO_SETTINGS_MODULE | chocolate.settings
PYTHONPATH | C:\Users\User\Dropbox\chocolate-chocolate\chocolate;C:\Users\User\Dropbox\chocolate-chocolate\site-packages
WSGI_HANDLER | django.core.handlers.wsgi.WSGIHandler()
and this for Handlers:
* | C:\Python27\python.exe | C:\python27\Scripts\wfastcgi.py
This is the file hierarchy of my app:
chocolate-chocolate\
chocolate\
chocolate # this is the app
chocolate\
manage.py
web.config
chocolate\
__init__.py
settings.py
urls.py
wsgi
...
site-packages\
django\
....
DEBUG=Truein yoursettings.pyand see you get any more details for the error. - Rohan