# HG changeset patch # User Marcin Kuzminski # Date 2013-07-01 15:39:01 # Node ID 2c82dd8ba31812ca48280ee28d993744a93bf774 # Parent bf5c2c75c976bccd05bea1eaa733bdbca2bfa4dd Added two headers into example nginx proxy conf that allows container auth to work properly diff --git a/docs/setup.rst b/docs/setup.rst --- a/docs/setup.rst +++ b/docs/setup.rst @@ -590,6 +590,9 @@ pushes or large pushes:: 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;