aboutsummaryrefslogtreecommitdiff
path: root/Docker
diff options
context:
space:
mode:
authorGravatar Benjamin Bouvier <public@benj.me> 2019-03-19 19:52:53 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-03-19 19:52:53 +0100
commit6323fe5ea011e7f8821b93071c8f40f271a697f0 (patch)
tree157ce34ea5307d1a81bfedd4d576662338a8179f /Docker
parente6888bbf232de5547560ea3af56ed760cb11c4ae (diff)
Add Authorization header forwarding to the Nginx configuration for Docker (#2282)
* Add Authorization header forwarding to the Nginx configuration for Docker * Comment
Diffstat (limited to 'Docker')
-rw-r--r--Docker/README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/Docker/README.md b/Docker/README.md
index ba6169ea3..bed5e1cce 100644
--- a/Docker/README.md
+++ b/Docker/README.md
@@ -301,6 +301,10 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
proxy_read_timeout 90;
+
+ # Forward the Authorization header for the Google Reader API.
+ proxy_set_header Authorization $http_authorization;
+ proxy_pass_header Authorization;
}
}
```