Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lidarr/installation/reverse-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Sample config examples for configuring Lidarr to be accessible through a reverse

Add the following configuration to `nginx.conf` located in the root of your Nginx configuration. The code block should be added inside the `server context`. [Full example of a typical Nginx configuration](https://www.nginx.com/resources/wiki/start/topics/examples/full/)

> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
location ^~ /lidarr {
Expand Down Expand Up @@ -52,7 +52,7 @@ Alternatively you can use a subdomain for lidarr. In this case you would visit `
> Many free DNS providers do not support this {.is-warning}
By default Nginx includes the `sites-enabled` folder. You can check this in `nginx.conf`, if not you can add it using the [include directive](http://nginx.org/en/docs/ngx_core_module.html#include). And really important, it has to be inside the `http context`. Now create a config file inside the sites-enabled folder and enter the following configuration.
> For this configuration it is recommended to set baseurl to '' (empty). This configuration assumes you are using the default `8686` and Lidarr is accessible on the localhost (127.0.0.1). For this configuration the subdomain `lidarr` is chosen (line 5). {.is-info}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
server {
Expand Down
2 changes: 1 addition & 1 deletion prowlarr/installation/reverse-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Sample config examples for configuring Prowlarr to be accessible through a rever

Add the following configuration to `nginx.conf` located in the root of your Nginx configuration. The code block should be added inside the `server context`. [Full example of a typical Nginx configuration](https://www.nginx.com/resources/wiki/start/topics/examples/full/)

> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` as well as `proxy_set_header X-Forwarded-Host $host:$server_port` or `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
location /prowlarr {
Expand Down
4 changes: 2 additions & 2 deletions radarr/installation/reverse-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Sample config examples for configuring Radarr to be accessible from the outside

Add the following configuration to `nginx.conf` located in the root of your Nginx configuration. The code block should be added inside the `server context`. [Full example of a typical Nginx configuration](https://www.nginx.com/resources/wiki/start/topics/examples/full/)

> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
location ^~ /radarr {
Expand Down Expand Up @@ -65,7 +65,7 @@ By default Nginx includes the `sites-enabled` folder. You can check this in `ngi

> For this configuration it is recommended to set baseurl to '' (empty). This configuration assumes you are using the default `7878` and Radarr is accessible on the localhost (127.0.0.1). For this configuration the subdomain `radarr` is chosen (line 5). {.is-info}

> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
server {
Expand Down
4 changes: 2 additions & 2 deletions readarr/installation/reverse-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Sample config examples for configuring Readarr to be accessible from the outside

Add the following configuration to `nginx.conf` located in the root of your Nginx configuration. The code block should be added inside the `server context`. [Full example of a typical Nginx configuration](https://www.nginx.com/resources/wiki/start/topics/examples/full/)

> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
location ^~ /readarr {
Expand Down Expand Up @@ -76,7 +76,7 @@ By default Nginx includes the `sites-enabled` folder. You can check this in `ngi

> For this configuration it is recommended to set baseurl to '' (empty). This configuration assumes you are using the default `8787` and Readarr is accessible on the localhost (127.0.0.1). For this configuration the subdomain `readarr` is chosen (line 5). {.is-info}

> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
server {
Expand Down
4 changes: 2 additions & 2 deletions sonarr/installation/reverse-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Sample config examples for configuring Sonarr to be accessible from the outside

Add the following configuration to `nginx.conf` located in the root of your Nginx configuration. The code block should be added inside the `server context`. [Full example of a typical Nginx configuration](https://www.nginx.com/resources/wiki/start/topics/examples/full/)

> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
location ^~ /sonarr {
Expand Down Expand Up @@ -55,7 +55,7 @@ By default Nginx includes the `sites-enabled` folder. You can check this in `ngi

> For this configuration it is recommended to set baseurl to '' (empty). This configuration assumes you are using the default `8989` and Sonarr is accessible on the localhost (127.0.0.1). For this configuration the subdomain `sonarr` is chosen (line 5). {.is-info}

> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
server {
Expand Down
4 changes: 2 additions & 2 deletions whisparr/installation/reverse-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Sample config examples for configuring Whisparr to be accessible from the outsid

Add the following configuration to `nginx.conf` located in the root of your Nginx configuration. The code block should be added inside the `server context`. [Full example of a typical Nginx configuration](https://www.nginx.com/resources/wiki/start/topics/examples/full/)

> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
location /whisparr {
Expand Down Expand Up @@ -55,7 +55,7 @@ By default Nginx includes the `sites-enabled` folder. You can check this in `ngi

> For this configuration it is recommended to set baseurl to '' (empty). This configuration assumes you are using the default `6969` and Whisparr is accessible on the localhost (127.0.0.1). For this configuration the subdomain `whisparr` is chosen (line 5). {.is-info}

> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $host:$server_port` or `proxy_set_header Host $http_host` {.is-warning}
> If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.: `proxy_set_header Host $http_host` and also update `proxy_set_header X-Forwarded-Host $http_host` {.is-warning}

```nginx
server {
Expand Down