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

docs/overview.rst

index 438dd657cf0e5e6f322d8d114bdf5cb886298120..f066b47d05b077e5e843dbf3762e098b3740b92e 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;