From f0545dacb935bf9d0fe172b13693ae9ffae0eefc Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 27 Jun 2017 00:35:13 +0530 Subject: [PATCH] No double slash in nginx proxy_pass --- manual/server.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/server.rst b/manual/server.rst index 6b58bb3b8b..594e69b3ad 100644 --- a/manual/server.rst +++ b/manual/server.rst @@ -298,7 +298,7 @@ With nginx, the required configuration is:: proxy_set_header X-Forwarded-For $remote_addr; location /calibre/ { proxy_buffering off; - proxy_pass http://127.0.0.1:8080/$request_uri; + proxy_pass http://127.0.0.1:8080$request_uri; } location /calibre { # we need a trailing slash for the Application Cache to work