summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorJake Howard <git@theorangeone.net>2025-12-11 17:32:10 +0000
committerJacob Walls <jacobtylerwalls@gmail.com>2025-12-11 12:42:17 -0500
commit1651140a80e1b5e19784a6a859b6dd2e44c5d7f7 (patch)
tree763768b5dae60071a2f4a0eba4783b3342814ae8 /docs/howto
parentdae08cf55b83caef5e8ee39b16417692e8565278 (diff)
Included ASGI servers when noting what the server does.
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/auth-remote-user.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/auth-remote-user.txt b/docs/howto/auth-remote-user.txt
index c5f53c5e07..533f460e4a 100644
--- a/docs/howto/auth-remote-user.txt
+++ b/docs/howto/auth-remote-user.txt
@@ -111,7 +111,7 @@ instead of :class:`django.contrib.auth.middleware.RemoteUserMiddleware`::
This warning doesn't apply to ``RemoteUserMiddleware`` in its default
configuration with ``header = 'REMOTE_USER'``, since a key that doesn't
start with ``HTTP_`` in ``request.META`` can only be set by your WSGI
- server, not directly from an HTTP request header.
+ or ASGI server, not directly from an HTTP request header.
If you need more control, you can create your own authentication backend
that inherits from :class:`~django.contrib.auth.backends.RemoteUserBackend` and