1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Updated FAQ (markdown)

ta264 2020-01-05 14:11:39 +00:00
parent d0b2b07895
commit d8532fa051

10
FAQ.md

@ -35,3 +35,13 @@ Most likely this is due to a MacOS bug which caused one of the Sonarr databases
6. Move the following files to Trash: **nzbdrone.db, nzbdrone.db-journal**
6. Open the Backups folder you see and find the .zip archive with the most recent date. Decompress it. Move everything from the resulting folder into the main Radarr data folder, over-writing any files.
7. Attempt to launch Radarr and see if it works. If it does not work, you'll need further support, you can report the issue through the [issue tracker](https://github.com/Radarr/Radarr/issues)
### Why doesn't Aphrodite work behind an nginx reverse proxy
Aphrodite has switched to .NET Core and a new webserver. It requires the following addition to the location block for radarr:
```
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
```