Nginx Proxy Settings Tweak for Timeouts While Manual Importing

Not a bug report… just wanted to post a quick comment/resolution to an old post that was locked: Manual Import Modal “Glitchy” - v3 Testing - sonarr :: forums

I was experiencing “unable to load manual import items” messages when trying to load files from a cloud mounted folder (rclone in my case, but shouldn’t matter specifically). Bascially the reverse proxy was timing out and closing the connection (as markus101 suggested in that thread).

To resolve i upped that timeout in my nginx config using the following three variables:
proxy_read_timeout 300;
proxy_connect_timeout 300;
proxy_send_timeout 300;

The specific value you set these to is up to you, 5 minutes seems to be enough for me to get about 4 standard seasons of shows (~15 episodes/season) scanned at a time… i might go longer depending on how i make progress otherwise, but just wanted to post this hear in case anyone runs across the same issue.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.