我对uwsgi和CSRF验证有疑问。我已经在settings.py
中设置了域,例如:
CSRF_TRUSTED_ORIGINS=['https://example.com']
,这对python manage.py runserver
也适用,但是当我使用uwsgi时,我得到了错误消息:
Reason given for failure:
Referer checking failed - https://example.com/ does not match any trusted origins.
实际上是在抱怨我在CSRF_TRUSTED_ORIGINS
列表中设置的确切域,怎么可能?为何它可以与django runserver一起使用?