Adding radarr config changes for reverse proxy. In my case /Content wouldn't load without this (conflict with Sonarr)

Chris Johnson 2019-02-25 19:04:29 -08:00
parent de9680c5a1
commit 46c53ea8c6
1 changed files with 14 additions and 0 deletions

@ -32,3 +32,17 @@ Here `YOUR_DOMAIN` needs to be replaced with the domain you are using to reverse
Similarly `YOUR_URL_BASE` needs to be replaced with the URL Base set in radarr's settings. If it is empty, the line should read `location /`.
After reloading nginx you should now be able to find radarr at http://YOUR_DOMAIN/YOUR_URL_BASE.
## Radarr Config
To ensure your content remains showing, you need to update your `config.xml`
For example if you choose `/radarr` as your url base, you'll need to update your config as such:
```
<Config>
<LogLevel>Info</LogLevel>
<Port>7878</Port>
<UrlBase>/radarr</UrlBase>
...
</Config>
```