Django JWT Authentication behavior different between local & mod_wsgi servers with Django REST framework
I am trying to determine why authentication for protected resources using the Authorization: header behaves properly when using a local development server but not on my deployed apache 2.2 w/mod_wsgi implementation. I am using django 1.8 with django-rest-framework and the django-rest-framework-jwt lib for JWT based authentication. The apache server is ver 2.2 with mod_wsgi. This is all running on an ubuntu 12.04 instance (python 2.7). Working case with manage.py runserver on localhost: # manage.py runserver is running curl -s -X POST \ -d '{"username":"test@test.com", "password":}' \ http:/