From 74d7fa414397ed3e6bec8621c5fe7d5ecc039ac0 Mon Sep 17 00:00:00 2001 From: Pelagic Date: Mon, 15 Apr 2024 04:27:26 +0300 Subject: [PATCH] Fixed some errors in the README. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f9474d8..916ddfc 100644 --- a/README.md +++ b/README.md @@ -91,8 +91,9 @@ There are a few reasonable ways of setting it up. # include uwsgi_params; # uwsgi_pass_request_headers on; # uwsgi_pass_request_body on; - # uwsgi_param HTTP_X_ORIGINAL_METHOD $request_uri; - # uwsgi_param HTTP_X_ORIGINAL_URI $request_uri; + # uwsgi_param HTTP_X_AUTHORIZATION '$http_authorization'; + # uwsgi_param HTTP_X_ORIGINAL_METHOD '$request_method'; + # uwsgi_param HTTP_X_ORIGINAL_URI '$request_uri'; # uwsgi_pass unix:/path/to/my/django.sock; } ```