mirror of
https://github.com/Jackett/Jackett
synced 2025-02-22 06:10:49 +00:00
Add Running Jackett behind a reverse proxy
This commit is contained in:
parent
e72298ad42
commit
210085b854
1 changed files with 10 additions and 0 deletions
10
README.md
10
README.md
|
@ -326,6 +326,16 @@ Detailed instructions are available at [LinuxServer.io Jackett Docker](https://h
|
||||||
## Installation on Synology
|
## Installation on Synology
|
||||||
Jackett is available as beta package from [SynoCommunity](https://synocommunity.com/)
|
Jackett is available as beta package from [SynoCommunity](https://synocommunity.com/)
|
||||||
|
|
||||||
|
## Running Jackett behind a reverse proxy
|
||||||
|
When running jackett behind a reverse proxy make sure that the original hostname of the request is passed to Jackett. If HTTPS is used also set the X-Forwarded-Proto header to "https". Don't forget to adjust the "Base Path Override" Jackett option accordingly.
|
||||||
|
|
||||||
|
Example config for apache:
|
||||||
|
```
|
||||||
|
ProxyPreserveHost On
|
||||||
|
RequestHeader set X-Forwarded-Proto "https"
|
||||||
|
ProxyPass /jackett http://127.0.0.1:9117/
|
||||||
|
```
|
||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
* __Command line switches__
|
* __Command line switches__
|
||||||
|
|
Loading…
Reference in a new issue