diff docs/setup.rst @ 4073:2c82dd8ba318

Added two headers into example nginx proxy conf that allows container auth to work properly
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 01 Jul 2013 15:39:01 +0200
parents 5293d4bbb1ea
children 010e9532801a
line wrap: on
line diff
--- a/docs/setup.rst	Mon Jul 01 11:20:59 2013 +0200
+++ b/docs/setup.rst	Mon Jul 01 15:39:01 2013 +0200
@@ -590,6 +590,9 @@
 
     proxy_redirect              off;
     proxy_set_header            Host $host;
+    ## needed for container auth
+    #proxy_set_header            REMOTE_USER $remote_user;
+    #proxy_set_header            X-Forwarded-User $remote_user;
     proxy_set_header            X-Url-Scheme $scheme;
     proxy_set_header            X-Host $http_host;
     proxy_set_header            X-Real-IP $remote_addr;