mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-04 12:00:17 +00:00
Merge remote-tracking branch 'reverseproxy/master'
This commit is contained in:
commit
b8c539d49c
@ -131,8 +131,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;
|
||||
@ -142,6 +143,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:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user