From ce560bf44f178211acdfe6969fdd2ec2f3c6dac7 Mon Sep 17 00:00:00 2001 From: Fmstrat Date: Fri, 15 Jun 2018 15:59:55 -0400 Subject: [PATCH] Readme update for nginx proxy --- readme.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 7ab48305..203d6b7c 100755 --- a/readme.md +++ b/readme.md @@ -121,8 +121,9 @@ http { server 127.0.0.1:8083; } server { + client_max_body_size 20M; location /calibre { - proxy_bind $server_addr; + proxy_bind http://calibre; proxy_pass http://127.0.0.1:8083; proxy_set_header Host $http_host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; @@ -132,6 +133,10 @@ http { } } ``` +*Note: If using SSL in your reverse proxy on a non-standard port, the following proxy_redirect line may be required:* +``` +proxy_redirect http://$host/ https://$host:12345/; +``` Apache 2.4 configuration for a local server listening on port 443, mapping calibre web to /calibre-web: