[Solved]-Token authentication does not work in production on django rest framework

20👍

For me, the problem was, that Apache didn’t forward the Authorization-Header to the WSGI-Process. Here’s the fix:

Just add

WSGIPassAuthorization on

to your Apache (vhost) config.

👤trnc

Leave a comment