Created Reverse Proxy (markdown)

Donald Webster 2017-03-07 19:28:52 -08:00
parent 8c4429ade5
commit b938f93c28
1 changed files with 10 additions and 0 deletions

10
Reverse-Proxy.md Normal file

@ -0,0 +1,10 @@
## Apache
Reverse proxy configuration for Radarr is as simple as most other applications. If you've set `url_base` to something like `/radarr`, you'll need to include it here of course as well.
```
<Location /radarr>
ProxyPass http://10.0.1.2:7878
ProxyPassReverse http://10.0.1.2:7878
</Location>
```
## nginx