]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Update overview.rst with typos in nginx conf. 1037/head
authorAbhishek Kumar Singh <abhishek4bhopati@gmail.com>
Wed, 16 Apr 2014 09:06:33 +0000 (14:36 +0530)
committerAbhishek Kumar Singh <abhishek4bhopati@gmail.com>
Wed, 16 Apr 2014 09:06:33 +0000 (14:36 +0530)
Minor correction in the production nginx server conf with proxy_redirect as off; previously it was false.

docs/overview.rst

index 0ccbbcb33fdc27b5e1d0d882a8b25a8cb9f07083..4057b43b26726c04354a4e5b5f4a8644fa3fff15 100644 (file)
@@ -1095,7 +1095,7 @@ running on ports 8000 - 8003:
             location / {
                 proxy_pass_header Server;
                 proxy_set_header Host $http_host;
-                proxy_redirect false;
+                proxy_redirect off;
                 proxy_set_header X-Real-IP $remote_addr;
                 proxy_set_header X-Scheme $scheme;
                 proxy_pass http://frontends;