Updated FAQ (markdown)

ta264 2020-01-05 14:11:39 +00:00
parent d0b2b07895
commit d8532fa051
1 changed files with 11 additions and 1 deletions

12
FAQ.md

@ -34,4 +34,14 @@ Most likely this is due to a MacOS bug which caused one of the Sonarr databases
5. If not, then the log DB didn't get corrupted, and it might have been the primary database. You will need to restore from backup.
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)
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;
```